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.

A047990 a(n+1) = a(n) + (n^2 + 1)*a(n-1).

Original entry on oeis.org

1, 2, 4, 14, 54, 292, 1696, 12500, 97300, 909800, 8888400, 100778200, 1185163000, 15798002000, 217275712000, 3329482106000, 52433793018000, 908110694260000, 16113910669480000, 311249886303980000, 6144485548655740000
Offset: 0

Views

Author

Keywords

References

  • Studied by M. Bhargava (bhargava(AT)math.Princeton.EDU) and H. S. Wilf.

Crossrefs

Cf. A047991.

Programs

  • Mathematica
    RecurrenceTable[{a[0]==1,a[1]==2,a[n]==a[n-1]+((n-1)^2+1)a[n-2]},a,{n,20}] (* Harvey P. Dale, May 07 2013 *)

Formula

a(n) ~ c * n!, where c = sqrt(Pi) * (1/(Gamma(1/2 + i/2) * Gamma(1 - i/2)) + 1/(Gamma(1/2 - i/2) * Gamma(1 + i/2)))/2 + hypergeom([1 - i, 1 - i], [2], -1) / 2^i = 2.6068398732089369139523868268495087173767147472699250704975984714... and i is the imaginary unit. - Vaclav Kotesovec, Sep 26 2021

A348023 a(n) = [x^n] Product_{k=0..2*n-1} (x + (-1)^k * k).

Original entry on oeis.org

1, -1, -5, 51, 1009, -17765, -636385, 15875083, 828730833, -26734633497, -1837389309405, 72689703927555, 6202163408816881, -290609121018808813, -29631450442239587305, 1604436906627413556075, 190333687041180914380065, -11692931012450127257939505, -1582217617564533519968758645
Offset: 0

Views

Author

Seiichi Manyama, Sep 25 2021

Keywords

Crossrefs

Programs

  • PARI
    a(n) = polcoef(prod(k=0, 2*n-1, x+(-1)^k*k), n);

Formula

a(n) = A047991(2*n-1,n) for n>0.

A348024 a(n) = [x^n] Product_{k=1..2*n} (x + (-1)^k * k).

Original entry on oeis.org

1, 1, -13, -87, 2609, 34965, -1638841, -33411007, 2128380881, 58501278297, -4709853961605, -163166745402375, 15875893807564465, 664163782026582877, -75766955207796981345, -3716140360596415682175, 486265092408065178623265, 27363821966293458296896305, -4039473192629570940395992765
Offset: 0

Views

Author

Seiichi Manyama, Sep 25 2021

Keywords

Crossrefs

Programs

  • PARI
    a(n) = polcoef(prod(k=1, 2*n, x+(-1)^k*k), n);

Formula

a(n) = A047991(2*n,n).
Showing 1-3 of 3 results.