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!)
A055150 The first n digits of the juxtaposition of the base 9 numbers converted to decimal. 8
1, 11, 102, 922, 8303, 74733, 672604, 6053444, 54480997, 490328973, 4412960758, 39716646823, 357449821408, 3217048392674, 28953435534067, 260580919806606, 2345228278259455, 21107054504335099, 189963490539015892 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
1 (1); 12 (11); 123 (102); 1234 (922); 12345 (8303); 123456 (74733); ...
PROG
(PARI) { cuo=0;
for(ixp=1, 14,
casi = ixp; cvst=0;
while(casi != 0,
cvd = casi%9; cvst=10*cvst + cvd + 1; casi = (casi - cvd) / 9 );
while(cvst !=0,
ptch = cvst%10; cuo=cuo*9+ptch-1; print1(cuo, ", "); cvst = (cvst - ptch) / 10 ) )} \\\ Douglas Latimer, Apr 23 2012
CROSSREFS
Sequence in context: A054421 A037700 A037609 * A014832 A048441 A099294
KEYWORD
nonn,base
AUTHOR
Patrick De Geest, Apr 15 2000.
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 11:39 EDT 2024. Contains 371969 sequences. (Running on oeis4.)