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!)
A121351 a(n) = (3*n+1)*a(n-1) - a(n-2), starting a(0)=0, a(1)=1. 3
0, 1, 7, 69, 890, 14171, 268359, 5889727, 146974816, 4109405121, 127244583935, 4322206448669, 159794394016818, 6387453554224051, 274500708437617375, 12620645134576175199, 618137110885794967376, 32130509120926762128353 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
3*a(n)= Pi*BesselJ_{4/3 + n}(2/3)* BesselY_{4/3}(2/3) - Pi*BesselJ_{4/3}(2/3) * BesselY_{4/3 + n}(2/3).
a(n) = sum {k = 0..floor((n-1)/2)} (-1)^k*3^(n-2*k-1)*(n-2*k-1)!*binomial(n-k-1,k)*binomial(n-k+1/3,k+4/3), cf. A058798. - Peter Bala, Aug 01 2013
a(n) ~ n! * BesselJ(4/3, 2/3) * 3^(n+1/3) * n^(1/3). - Vaclav Kotesovec, Jul 31 2014
MATHEMATICA
f[n_Integer] = Module[{a}, a[n] /. RSolve[{a[n] == (3*n + 1)*a[n - 1] - a[n - 2], a[0] == 0, a[1] == 1}, a[n], n][[1]] // FullSimplify] Rationalize[N[Table[f[n], {n, 0, 25}], 100], 0]
RecurrenceTable[{a[0]==0, a[1]==1, a[n]==(3n+1)*a[n-1]-a[n-2]}, a, {n, 20}] (* Vaclav Kotesovec, Jul 31 2014 *)
nxt[{n_, a_, b_}]:={n+1, b, (3n+4)b-a}; NestList[nxt, {1, 0, 1}, 20][[All, 2]] (* Harvey P. Dale, Jun 20 2021 *)
CROSSREFS
Sequence in context: A243668 A265033 A226270 * A302353 A059321 A217400
KEYWORD
nonn,easy
AUTHOR
Roger L. Bagula and Bob Hanlon (hanlonr(AT)cox.net), Sep 05 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 23 03:30 EDT 2024. Contains 371906 sequences. (Running on oeis4.)