login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A078193 In the following triangle the n-th row contains n n-digit (or (n-1)-digit) numbers whose concatenation (with a 0 prefixed for (n-1)-digit numbers) gives a sub-string of the cyclic concatenation of 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,...: 1; 12 34; 123 456 789; 1234 5678 9012 3456; 12345 67890 12345 67890 12345; ... Sequence contains the final terms of rows. 3
1, 34, 789, 3456, 12345, 123456, 3456789, 78901234, 345678901, 1234567890, 12345678901, 345678901234, 7890123456789, 34567890123456, 123456789012345, 1234567890123456, 34567890123456789, 789012345678901234, 3456789012345678901, 12345678901234567890 (list; graph; refs; listen; history; internal format)
OFFSET

1,2

COMMENTS

Leading digit is [(n-1)*n+1] mod 10, zero allowed and therefore one more than the least significant digit in A002378(n-1). - R. J. Mathar (mathar(AT)strw.leidenuniv.nl), May 19 2006

PROG

(PARI) A078193(n)= { local(a, f) ; a= (n*(n-1)+1) %10 ; f=a ; for(i=1, n-1, a=Str(Str(a) Str((f+i)%10)) ; a=eval(a) ; ) ; return(a) ; } { for(n=1, 20, print1(A078193(n), ", ") ; ) ; } - R. J. Mathar (mathar(AT)strw.leidenuniv.nl), May 19 2006

CROSSREFS

Cf. A078194, A078195.

Sequence in context: A028023 A025190 A160315 * A063843 A192094 A020535

Adjacent sequences:  A078190 A078191 A078192 * A078194 A078195 A078196

KEYWORD

base,nonn

AUTHOR

Amarnath Murthy (amarnath_murthy(AT)yahoo.com), Nov 21 2002

EXTENSIONS

More terms from R. J. Mathar (mathar(AT)strw.leidenuniv.nl), May 19 2006

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 14 11:32 EST 2012. Contains 205623 sequences.