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!)
A159862 Main diagonal of A159861. 2
1, 1, 4, 29, 2265, 18698645, 1602308616574727, 14017675267522095175220940844027, 1245902734717669791621141496863001384336371908521990690157218737 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
The length (number of decimal digits) of a(n) may be a power of 2 and often simply doubles, when n is increased by 1. But there are many exceptions: n = 11, 12, 13 give lengths 2^8, 3*2^7, 2^9, respectively. A factor of 3 is found in the lengths of a(n) for n = 12, 112..123, 1113..1234, 11123..12345, and so on. A factor of 7 is found for n = 1112, 11112..11122, and so on. 15 is factor of the length of a(11111112).
LINKS
MAPLE
R:= (S, m)-> iquo(S+m-1, m):
A:= proc(m, n) option remember; `if`(n=1, 1,
R(parse(cat(seq(A(m, j), j=1..n-1))), m))
end:
a:= n-> A(n, n):
seq(a(n), n=1..10);
MATHEMATICA
R[S_, m_] := Quotient[S + m - 1, m];
A[m_, n_] := If[n == 1, 1, R[ToExpression@StringJoin[ToString /@ Table[A[m, j], {j, 1, n - 1}]], m]];
a[n_] := A[n, n];
Table[a[n], {n, 1, 10}] (* Jean-François Alcover, Feb 13 2023, after Maple code *)
CROSSREFS
Sequence in context: A166168 A126559 A213795 * A364853 A298648 A164820
KEYWORD
easy,nonn
AUTHOR
Eric Angelini and Alois P. Heinz, Apr 24 2009
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 23 18:16 EDT 2024. Contains 371916 sequences. (Running on oeis4.)