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!)
A070312 a(1) = a(2) = 1; a(n) = a(n-1) + concatenation of a(n-2) and a(n-1). 1
1, 1, 12, 124, 12248, 12424496, 1224824848992, 124244962449649697984, 1224824848992248489924899299395968, 1242449624496496979842449649697984496979849798598791936 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
EXAMPLE
a(4) = a(3) + concatenation of a(2) and a(3) = 12 + 112 = 124.
MATHEMATICA
a[n_] := (a[n - 1] + FromDigits[ Join[ IntegerDigits[ a[n - 2]], IntegerDigits[ a[n - 1]]]]); a[1] = a[2] = 1; Table[ a[n], {n, 1, 10}]
nxt[{a_, b_}]:={b, b+a*10^IntegerLength[b]+b}; NestList[nxt, {1, 1}, 10][[;; , 1]] (* Harvey P. Dale, Oct 20 2023 *)
CROSSREFS
Sequence in context: A331396 A209041 A155595 * A153427 A356822 A178626
KEYWORD
base,nonn
AUTHOR
Joseph L. Pe, May 11 2002
EXTENSIONS
Edited by Robert G. Wilson v, May 14 2002
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 03:30 EDT 2024. Contains 371906 sequences. (Running on oeis4.)