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.

Previous Showing 21-22 of 22 results.

A375653 Expansion of e.g.f. exp(x^2 + x * exp(x^2)).

Original entry on oeis.org

1, 1, 3, 13, 49, 321, 1891, 13693, 113793, 942049, 9428131, 93837261, 1043918833, 12318170593, 151123106499, 2024107965181, 27672074520961, 406722703307073, 6188268876372163, 98499148173678349, 1645657615850089521, 28317883192163927041
Offset: 0

Views

Author

Seiichi Manyama, Aug 22 2024

Keywords

Crossrefs

Programs

  • PARI
    my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(x^2+x*exp(x^2))))
    
  • PARI
    a(n) = n!*sum(k=0, n\2, (n-2*k+1)^k/(k!*(n-2*k)!));

Formula

a(n) = n! * Sum_{k=0..floor(n/2)} (n-2*k+1)^k / (k! * (n-2*k)!).

A375654 Expansion of e.g.f. exp(2*x^2 + x * exp(x^2)).

Original entry on oeis.org

1, 1, 5, 19, 97, 641, 4021, 33475, 272609, 2559457, 25926661, 273419411, 3221437825, 38674360609, 506595820277, 6895149870211, 98785254688321, 1496456813264705, 23400554985371269, 386926938274889107, 6593495476334628641, 117506166655500705601
Offset: 0

Views

Author

Seiichi Manyama, Aug 22 2024

Keywords

Crossrefs

Programs

  • PARI
    my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(2*x^2+x*exp(x^2))))
    
  • PARI
    a(n) = n!*sum(k=0, n\2, (n-2*k+2)^k/(k!*(n-2*k)!));

Formula

a(n) = n! * Sum_{k=0..floor(n/2)} (n-2*k+2)^k / (k! * (n-2*k)!).
Previous Showing 21-22 of 22 results.