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!)
A114954 A 3/2-power Fibonacci sequence. 0
1, 1, 2, 4, 11, 45, 339, 6544, 535619, 392527477, 7777266564708, 21689055127418446258, 101009204076980364695686091211 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
This sequence is related to: A112961 "a cubic Fibonacci sequence" a(1) = a(2) = 1; for n>2: a(n) = a(n-1)^3 + a(n-2)^3 A112969 "a quartic Fibonacci sequence" a(1) = a(2) = 1; for n>2: a(n) = a(n-1)^4 + a(n-2)^4, which is the quartic (or biquadratic) analog of the Fibonacci sequence similarly to A000283 being the quadratic analog of the Fibonacci sequence. Primes in this sequence include a(n) for n = 2, 4. Semiprimes in this sequence include a(n) for n = 3, 6.
LINKS
FORMULA
a(0) = a(1) = 1, for n>1 a(n) = ceiling(a(n-1)^(3/2) + a(n-2)^(3/2)).
EXAMPLE
a(2) = ceiling(a(0)^(3/2) + a(1)^(3/2)) = ceiling(1^1.5 + 1^1.5) = 2.
a(3) = ceiling(a(1)^(3/2) + a(2)^(3/2)) = ceiling(1^1.5 + 2^1.5) = ceiling(3.82842712) = 4.
a(4) = ceiling(2^(3/2) + 4^(3/2)) = ceiling(10.8284271) = 11.
a(5) = ceiling((4^(3/2)) + (11^(3/2))) = ceiling(44.4828727) = 45.
a(6) = ceiling((11^(3/2)) + (45^(3/2))) = ceiling(338.35205) = 339.
a(7) = ceiling((45^(3/2)) + (339^(3/2))) = ceiling(6543.52112) = 6544.
MATHEMATICA
RecurrenceTable[{a[0]==a[1]==1, a[n]==Ceiling[Surd[ a[n-1]^3, 2]+ Surd[ a[n-2]^3, 2]]}, a, {n, 15}] (* Harvey P. Dale, Apr 07 2016 *)
CROSSREFS
Sequence in context: A328437 A107703 A140838 * A134019 A120259 A174632
KEYWORD
easy,nonn
AUTHOR
Jonathan Vos Post, Feb 21 2006
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 19 02:45 EDT 2024. Contains 371782 sequences. (Running on oeis4.)