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!)
A307799 a(0) = 0, a(1) = 3; a(n) = rev(a(n-1))*a(n-1) + a(n-2), where rev = digit reversal (A004086). 0
0, 3, 9, 84, 4041, 5673648, 48020423368761, 806086788756824484462571572, 221815145293562950532110825781341443907408910699844537 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
The next term is too large to include.
LINKS
EXAMPLE
+---+--------------+---------------------+------------------+
| n | a(n)/a(n+1) | Continued fraction | Comment |
+---+--------------+---------------------+------------------+
| 1 | 3/9 | [0; 3] | 3 = rev(a(1)) |
+---+--------------+---------------------+------------------+
| 2 | 9/84 | [0; 9, 3] | 9 = rev(a(2)) |
+---+--------------+---------------------+------------------+
| 3 | 84/4041 | [0; 48, 9, 3] | 48 = rev(a(3)) |
+---+--------------+---------------------+------------------+
| 4 | 4041/5673648 | [0; 1404, 48, 9, 3] | 1404 = rev(a(4)) |
+---+--------------+---------------------+------------------+
MATHEMATICA
a[n_] := a[n] = FromDigits[Reverse[IntegerDigits[a[n - 1]]]] a[n - 1] + a[n - 2]; a[0] = 0; a[1] = 3; Table[a[n], {n, 0, 8}]
CROSSREFS
Sequence in context: A018624 A274032 A032078 * A326159 A203559 A184098
KEYWORD
nonn,base
AUTHOR
Ilya Gutkovskiy, Apr 29 2019
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 7 07:05 EDT 2024. Contains 372300 sequences. (Running on oeis4.)