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-3 of 3 results.

A294119 Expansion of e.g.f.: exp(2*((1+x)^2 - 1)).

Original entry on oeis.org

1, 4, 20, 112, 688, 4544, 31936, 236800, 1841408, 14943232, 126063616, 1101983744, 9954734080, 92714156032, 888502796288, 8746003922944, 88294183469056, 912920984944640, 9655688415674368, 104353064578711552, 1151244577906098176, 12953223477921316864
Offset: 0

Views

Author

Seiichi Manyama, Oct 23 2017

Keywords

Crossrefs

Column k=2 of A294118.

Programs

  • Maple
    f:= rectoproc({a(n)=4*a(n-1)+4*(n-1)*a(n-2),a(0)=1,a(1)=4},a(n),remember):
    map(f, [$0..30]); # Robert Israel, Jun 16 2020
  • Mathematica
    nmax = 20; CoefficientList[Series[E^(2*((1+x)^2 - 1)), {x, 0, nmax}], x] * Range[0, nmax]! (* Vaclav Kotesovec, Oct 23 2017 *)
  • PARI
    N=66; x='x+O('x^N); Vec(serlaplace(exp(2*((1+x)^2-1))))

Formula

E.g.f.: exp(2*((1+x)^2 - 1)).
a(n) ~ 2^(n - 1/2) * n^(n/2) * exp(-1 + 2*sqrt(n) - n/2). - Vaclav Kotesovec, Oct 23 2017
a(n) = 4*a(n-1)+4*(n-1)*a(n-2). - Robert Israel, Jun 16 2020

A294120 E.g.f.: exp(3*((1+x)^3 - 1)).

Original entry on oeis.org

1, 9, 99, 1233, 16929, 251829, 4012011, 67876461, 1211592897, 22700600001, 444567396051, 9068604811209, 192115381719969, 4216003141209453, 95631348748295259, 2237799925576748709, 53928909429116324481, 1336410276724468307961
Offset: 0

Views

Author

Seiichi Manyama, Oct 23 2017

Keywords

Crossrefs

Column k=3 of A294118.

Programs

  • Mathematica
    nmax = 20; CoefficientList[Series[E^(3*((1+x)^3 - 1)), {x, 0, nmax}], x] * Range[0, nmax]! (* Vaclav Kotesovec, Oct 23 2017 *)
  • PARI
    N=66; x='x+O('x^N); Vec(serlaplace(exp(3*((1+x)^3-1))))

Formula

a(n) ~ 3^(2*n/3 - 1/2) * n^(2*n/3) * exp(-2 + 3^(1/3)*n^(1/3) + 3^(2/3)*n^(2/3) - 2*n/3). - Vaclav Kotesovec, Oct 23 2017

A294191 a(n) = n! * [x^n] exp(n*((1+x)^n - 1)).

Original entry on oeis.org

1, 1, 20, 1233, 152416, 31391225, 9694519776, 4190408587645, 2414572869757952, 1788571346467193361, 1655904985345402048000, 1873608841984994237091881, 2543757905332880336197324800, 4081324788082969930056684134953, 7639334000918272184846041849942016
Offset: 0

Views

Author

Seiichi Manyama, Oct 24 2017

Keywords

Crossrefs

Main diagonal of A294118.
Cf. A294045.
Showing 1-3 of 3 results.