login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A157455 Number generated by regarding the numbers in row n of A157454 as digits of a base n number. 0
1, 3, 19, 125, 1141, 12943, 182743, 3080025, 60530761, 1357997531, 34237329611, 957927505717, 29446189175677, 986272776455415, 35746439978786671, 1393753996031259953, 58165330912030118161, 2586788074128361802419 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Note that for odd n, the digits will include n itself.
LINKS
FORMULA
t(n,m)=Min[2*m - 1, 2*(n - m) + 1]; a(n)=FromDigits[{Table[t[n, m], {m, 1, n}], n}, n].
EXAMPLE
Row 4 of A157454 is 1,3,3,1. 1331 in base 4 = 4^3 + 3*4^2 + 3*4 + 1 = 125, so a(4) = 125.
MATHEMATICA
t[n_, m_] =Min[1 + 2*m, 1 + 2*(n - m)];
Table[FromDigits[{Table[t[n, m], {m, 0, n}], n + 1}, n + 1], {n, 0, 20}]
CROSSREFS
Sequence in context: A318811 A352299 A074572 * A027308 A295371 A156069
KEYWORD
nonn,base
AUTHOR
Roger L. Bagula, Mar 01 2009
EXTENSIONS
Edited by Franklin T. Adams-Watters, Sep 25 2011
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 10:51 EDT 2024. Contains 371967 sequences. (Running on oeis4.)