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!)
A306822 Expansion of e.g.f. (sec(x) + tan(x))*exp(2*x)*BesselI(0,2*x). 1
1, 3, 11, 46, 207, 988, 4989, 26734, 152827, 937212, 6192741, 44191654, 340575513, 2829201638, 25252605283, 241269232186, 2457951274627, 26602476272908, 304845053785469, 3687342610303174, 46948693772419597, 627657623728640182, 8790742273959180703, 128716280124796774354 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Boustrophedon transform of central binomial coefficients (A000984).
LINKS
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
A306822_list = list(islice(A306822_gen(), 20)) # Chai Wah Wu, Jun 11 2022
CROSSREFS
Sequence in context: A155134 A006605 A357233 * A193074 A287891 A371428
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Apr 16 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 April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)