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!)
A349541 E.g.f.: exp(x) * (BesselI(0,8*x) + BesselI(1,8*x)). 1
1, 5, 41, 301, 2513, 20181, 170745, 1423101, 12161441, 103344037, 889924553, 7650373325, 66271512433, 574065261173, 4996181205657, 43511277885597, 380108373809985, 3323551100483397, 29122753514303337, 255427680480306285, 2243831648555990289, 19728657265135701525 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = Sum_{k=0..n} binomial(n,k) * binomial(k,floor(k/2)) * 4^k.
a(n) ~ 3^(2*n + 1) / (2*sqrt(Pi*n)). - Vaclav Kotesovec, Nov 26 2021
MATHEMATICA
nmax = 21; CoefficientList[Series[Exp[x] (BesselI[0, 8 x] + BesselI[1, 8 x]), {x, 0, nmax}], x] Range[0, nmax]!
Table[Sum[Binomial[n, k] Binomial[k, Floor[k/2]] 4^k, {k, 0, n}], {n, 0, 21}]
PROG
(PARI) a(n) = sum(k=0, n, binomial(n, k) * binomial(k, k\2) * 4^k); \\ Michel Marcus, Nov 21 2021
CROSSREFS
Sequence in context: A154577 A198688 A337285 * A202249 A067381 A155612
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Nov 21 2021
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 02:28 EDT 2024. Contains 371917 sequences. (Running on oeis4.)