OFFSET
0,2
COMMENTS
Boustrophedon transform of central binomial coefficients (A000984).
FORMULA
a(n) ~ BesselI(0, Pi) * 2^(n + 5/2) * n^(n + 1/2) / (Pi^(n + 1/2) * exp(n - Pi)). - Vaclav Kotesovec, May 04 2024
MATHEMATICA
nmax = 23; CoefficientList[Series[(Sec[x] + Tan[x]) Exp[2 x] BesselI[0, 2 x], {x, 0, nmax}], x] Range[0, nmax]!
t[n_, 0] := Binomial[2 n, n]; t[n_, k_] := t[n, k] = t[n, k - 1] + t[n - 1, n - k]; a[n_] := t[n, n]; Array[a, 24, 0]
PROG
(Python)
from itertools import count, islice, accumulate
def A306822_gen(): # generator of terms
blist, m = tuple(), 1
for i in count(1):
yield (blist := tuple(accumulate(reversed(blist), initial=m)))[-1]
m = m*(4*i-2)//i
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Apr 16 2019
STATUS
approved