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.

A299074 Expansion of 1/((1-x)*(1-2*x)*(1-6*x)*(1-24*x)).

Original entry on oeis.org

1, 33, 853, 20853, 502789, 12080901, 290025541, 6961116741, 167069824837, 4009693935429, 96232763288389, 2309586971953989, 55430091245099845, 1330322213391637317, 31927733262454774597, 766265599145247529797, 18390374384563938483013, 441368985260002510461765
Offset: 0

Views

Author

Seiichi Manyama, Feb 02 2018

Keywords

Crossrefs

Programs

  • PARI
    N=66; x='x+O('x^N); Vec(1/prod(k=1, 4, (1-k!*x)))
    
  • PARI
    Vec(1/((1 - x)*(1 - 2*x)*(1 - 6*x)*(1 - 24*x)) + O(x^20)) \\ Colin Barker, Feb 02 2018

Formula

O.g.f.: 1/((1 - x)*(1 - 2*x)(1 - 6*x)*(1 - 24*x)).
From Colin Barker, Feb 02 2018: (Start)
a(n) = (-11 + 115*2^n - 759*6^n + 1920*24^n) / 1265.
a(n) = 33*a(n-1) - 236*a(n-2) + 492*a(n-3) - 288*a(n-4) for n>3. (End)