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.

A369808 Expansion of 1/(1 - x^5/(1-x)^7).

Original entry on oeis.org

1, 0, 0, 0, 0, 1, 7, 28, 84, 210, 463, 938, 1821, 3563, 7385, 16577, 39529, 96315, 232393, 546806, 1251461, 2801015, 6189683, 13647361, 30281870, 67918782, 153939843, 351309676, 803438125, 1834160110, 4170751775, 9443922772, 21316094357, 48041401423, 108291578580
Offset: 0

Views

Author

Seiichi Manyama, Feb 01 2024

Keywords

Comments

Number of compositions of 7*n-5 into parts 5 and 7.

Crossrefs

Programs

  • PARI
    my(N=40, x='x+O('x^N)); Vec(1/(1-x^5/(1-x)^7))
    
  • PARI
    a(n) = sum(k=0, n\5, binomial(n-1+2*k, n-5*k));

Formula

a(n) = A369816(7*n-5) for n > 0.
a(n) = 7*a(n-1) - 21*a(n-2) + 35*a(n-3) - 35*a(n-4) + 22*a(n-5) - 7*a(n-6) + a(n-7) for n > 7.
a(n) = Sum_{k=0..floor(n/5)} binomial(n-1+2*k,n-5*k).