The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A299872 The sum of the first n terms of the sequence is the concatenation of the first n digits of the sequence, and a(1) = 9. 9
9, 90, 891, 8918, 89181, 891802, 8918027, 89180271, 891802702, 8918027027, 89180270270, 891802702701, 8918027027002, 89180270270027, 891802702700263, 8918027027002637, 89180270270026371, 891802702700263702, 8918027027002637027, 89180270270026370262, 891802702700263702622, 8918027027002637026226 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The sequence starts with a(1) = 9 and is always extended with the smallest integer not yet present in the sequence and not leading to a contradiction.
LINKS
FORMULA
a(n) = c(n) - c(n-1), where c(n) = concatenation of the first n digits; c(n) ~ 0.99*10^n, a(n) ~ 0.89*10^n. See A300000 for the proof. - M. F. Hasler, Feb 22 2018
EXAMPLE
9 + 90 = 99 which is the concatenation of 9 and 9.
9 + 90 + 891 = 990 which is the concatenation of 9, 9 and 0.
9 + 90 + 891 + 8918 = 9908 which is the concatenation of 9, 9, 0 and 8.
From n = 3 on, a(n) can be computed directly as c(n) - c(n-1), cf. formula: a(3) = 990 - 99 = 891, a(4) = 9908 - 990 = 8918, etc. - M. F. Hasler, Feb 22 2018
PROG
(PARI) a(n, show=1, a=9, c=a, d=[a])={for(n=2, n, show&&print1(a", "); a=-c+c=c*10+d[1]; d=concat(d[^1], if(n>2, digits(a)))); a} \\ M. F. Hasler, Feb 22 2018
CROSSREFS
A300000 is the lexicographically first sequence of this type, with a(1) = 1.
Cf. A299865, ..., A299871 for variants with a(1) = 2, ..., 8.
Sequence in context: A343366 A057092 A156577 * A173480 A052268 A155199
KEYWORD
nonn,base
AUTHOR
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 May 19 09:05 EDT 2024. Contains 372673 sequences. (Running on oeis4.)