|
Search: id:A121353
|
|
|
| A121353 |
|
An A053984-like Bessel-Binet recursion found by Bob Hanlon's new survey program: a[n] = (3*n - 2)*a[n - 1] - a[n - 2]. |
|
+0 1
|
|
| 0, 1, 4, 27, 266, 3431, 54630, 1034539, 22705228, 566596161, 15841987280, 490535009519, 16662348336366, 616016353436023, 24623991789104554, 1058215630578059799, 48653295014801646200, 2382953240094702604001
(list; graph; listen)
|
|
|
OFFSET
|
1,3
|
|
|
COMMENT
|
I had theorized that there were a related kind of Bessel-Binets of the form: a[n]=(a0*n+c0)*a[n-1]+b0*a[n-2] Where the a0,b0 and c0 were Integers. Bob Hanlon found ones with a0=2 in a program he wrote. A053984 was already in OEIS. This one is a0=3
|
|
FORMULA
|
a(n) = (3*n-2)*a(n - 1) - a(n - 2) a(n)=(1/3) pi BesselJ[1/3 + n, 2/3] BesselY[1/3, 2/3] - (1/3) pi BesselJ[1/3, 2/3] BesselY[1/3 + n, 2/3]
|
|
MATHEMATICA
|
f[n_Integer] = Module[{a}, a[n] /. RSolve[{a[n] == (3*n - 2)*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]
|
|
CROSSREFS
|
Cf. A053984, A001503.
Sequence in context: A000312 A050764 A052813 this_sequence A161633 A052871 A104653
Adjacent sequences: A121350 A121351 A121352 this_sequence A121354 A121355 A121356
|
|
KEYWORD
|
nonn,uned
|
|
AUTHOR
|
Roger Bagula and Bob Hanlon (rlbagulatftn(AT)yahoo.com), Sep 05 2006
|
|
|
Search completed in 0.002 seconds
|