cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-2 of 2 results.

A349540 E.g.f.: exp(x) * (BesselI(0,6*x) + BesselI(1,6*x)).

Original entry on oeis.org

1, 4, 25, 145, 931, 5866, 38359, 249880, 1655035, 10968724, 73320259, 491001721, 3304488565, 22283168350, 150744668065, 1021597533865, 6938921001235, 47202858834100, 321640950882475, 2194500145215595, 14992297096036345, 102535471011848230, 702004865920831525
Offset: 0

Views

Author

Ilya Gutkovskiy, Nov 21 2021

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 22; CoefficientList[Series[Exp[x] (BesselI[0, 6 x] + BesselI[1, 6 x]), {x, 0, nmax}], x] Range[0, nmax]!
    Table[Sum[Binomial[n, k] Binomial[k, Floor[k/2]] 3^k, {k, 0, n}], {n, 0, 22}]
  • PARI
    a(n) = sum(k=0, n, binomial(n,k) * binomial(k, k\2) * 3^k); \\ Michel Marcus, Nov 21 2021

Formula

a(n) = Sum_{k=0..n} binomial(n,k) * binomial(k,floor(k/2)) * 3^k.
a(n) ~ 7^(n + 1/2) / sqrt(3*Pi*n). - Vaclav Kotesovec, Nov 26 2021

A349541 E.g.f.: exp(x) * (BesselI(0,8*x) + BesselI(1,8*x)).

Original entry on oeis.org

1, 5, 41, 301, 2513, 20181, 170745, 1423101, 12161441, 103344037, 889924553, 7650373325, 66271512433, 574065261173, 4996181205657, 43511277885597, 380108373809985, 3323551100483397, 29122753514303337, 255427680480306285, 2243831648555990289, 19728657265135701525
Offset: 0

Views

Author

Ilya Gutkovskiy, Nov 21 2021

Keywords

Crossrefs

Programs

  • 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}]
  • PARI
    a(n) = sum(k=0, n, binomial(n,k) * binomial(k, k\2) * 4^k); \\ Michel Marcus, Nov 21 2021

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
Showing 1-2 of 2 results.