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!)
A258161 a(n) = a(n-1)^3/a(n-2) with a(0)=1, a(1)=2. 1
1, 2, 8, 256, 2097152, 36028797018963968, 22300745198530623141535718272648361505980416 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
The next term has 114 digits.
LINKS
FORMULA
a(n) = 2^(Fibonacci(2*n)).
MATHEMATICA
Clear[a]; RecurrenceTable[{a[n]==a[n-1]^3/a[n-2], a[0]==1, a[1]==2}, a, {n, 0, 8}]
Clear[a]; a[0]=2; a[n_]:=a[n]=Product[a[j]^(n-j), {j, 0, n-1}]; Flatten[{1, Table[a[n], {n, 1, 8}]}]
Table[2^(Fibonacci[2*n]), {n, 0, 8}]
CROSSREFS
Sequence in context: A012341 A299374 A203317 * A012296 A009675 A012301
KEYWORD
nonn,easy
AUTHOR
Vaclav Kotesovec, May 22 2015
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 16:45 EDT 2024. Contains 371989 sequences. (Running on oeis4.)