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!)
A329304 Numerators of convergents to A309930, the constant whose continued fraction representation consists of the cubes, [0; 1, 8, 27, 64, ...]. 1
0, 1, 8, 217, 13896, 1737217, 375252768, 128713436641, 65901654812960, 48042435072084481, 48042500973739293960, 63944616838482072345241, 110496345939397994751870408, 242760535973474232951931631617, 666135021207559234618095149027456 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
Eric Weisstein's World of Mathematics, Continued Fraction
FORMULA
a(0) = 0, a(1) = 1, a(n) = n^3*a(n-1) + a(n-2) for n >= 2.
EXAMPLE
Convergents to [0; 1, 8, 27, 64, ...]: 0, 1, 8/9, 217/244, 13896/15625, 1737217/1953369, 375252768/421943329, ...
PROG
(PARI) A329304_up_to_n(n) = my(v=vector(n+1)); for(i=1, n+1, if(i==1, v[i]=0, if(i==2, v[i]=1, v[i]=(i-1)^3*v[i-1]+v[i-2]))); v
CROSSREFS
Cf. A309930, A329305 (denominators), A001053, A036245.
Sequence in context: A245591 A247539 A188680 * A352471 A232157 A305517
KEYWORD
nonn,frac
AUTHOR
Jianing Song, Nov 30 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 June 29 07:27 EDT 2024. Contains 373826 sequences. (Running on oeis4.)