Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                

Revision History for A134970

(Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing entries 1-10 | older changes
Canyon numbers. Numbers with exactly one locally minimal digit and with exactly two locally maximal digits which are the same digit and nonadjacent.
(history; published version)
#44 by Peter Luschny at Wed Aug 03 02:33:45 EDT 2022
STATUS

reviewed

approved

#43 by Michel Marcus at Wed Aug 03 01:54:05 EDT 2022
STATUS

proposed

reviewed

#42 by Jon E. Schoenfield at Wed Aug 03 01:10:40 EDT 2022
STATUS

editing

proposed

#41 by Jon E. Schoenfield at Wed Aug 03 01:08:43 EDT 2022
NAME

Canyon numbers. Numbers with exactly one locally minimal digit and with exactly two locally maximal digits which are the same digit and non-adjacentnonadjacent.

COMMENTS

Because they are nonadjacent, the maxima occur at the end (and the minimum somewhere between), and the sequence of digits must be decreasing up to the minimum, then increasing. This may be taken as part of the definition (which entails non-adjacency nonadjacency of the maxima).

The structure of digits represent represents a canyon (a deep valley between cliffs). The first digit is equal to the last digit. The first group of digits are in decreasing order. The second group of digits are in increasing order. The digits have a unique smallest digit which represents the bottom of the canyon.

This sequence is finite - - it has 116505 elementsterms. The largest and final element term of the sequence is a(116505) = 9876543210123456789.

EXAMPLE

4 . . 4

. . . .

. . . .

. . . .

. . . .

. 1 . .

. . 0 .

STATUS

approved

editing

Discussion
Wed Aug 03
01:10
Jon E. Schoenfield: “The first group of digits are”? “The first group of digits is”? I don’t remember the rule. :-(
#40 by Alois P. Heinz at Tue Aug 02 20:25:57 EDT 2022
STATUS

proposed

approved

#39 by Michael S. Branicky at Tue Aug 02 20:00:47 EDT 2022
STATUS

editing

proposed

#38 by Michael S. Branicky at Tue Aug 02 20:00:45 EDT 2022
PROG

(Python)

from itertools import chain, combinations as combs

ups = list(chain.from_iterable(combs(range(10), r) for r in range(2, 11)))

s = set(L[::-1] + R[1:] for L in ups for R in ups if L[0] == R[0])

afull = sorted(int("".join(map(str, t))) for t in s if t[0] == t[-1])

print(afull[:60]) # Michael S. Branicky, Aug 02 2022

STATUS

approved

editing

#37 by OEIS Server at Mon Mar 14 17:16:34 EDT 2016
LINKS

Kellen Myers, <a href="/A134970/b134970_1.txt">Table of n, a(n) for n = 1..116505</a>

#36 by R. J. Mathar at Mon Mar 14 17:16:34 EDT 2016
STATUS

reviewed

approved

Discussion
Mon Mar 14
17:16
OEIS Server: Installed new b-file as b134970.txt.  Old b-file is now b134970_1.txt.
#35 by R. J. Mathar at Mon Mar 14 17:12:44 EDT 2016
STATUS

proposed

reviewed