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.

A364476 G.f. satisfies A(x) = 1 + x*A(x) + x^2*A(x)^7.

Original entry on oeis.org

1, 1, 2, 9, 44, 226, 1241, 7093, 41666, 250260, 1529993, 9488398, 59545909, 377451385, 2413157855, 15542535697, 100753850132, 656856027658, 4303970039402, 28328599504756, 187214549485759, 1241775795647609, 8263989319451514, 55163575187733922
Offset: 0

Views

Author

Seiichi Manyama, Jul 26 2023

Keywords

Crossrefs

Programs

  • PARI
    a(n) = sum(k=0, n\2, binomial(n+5*k, k)*binomial(n+4*k, n-2*k)/(6*k+1));

Formula

a(n) = Sum_{k=0..floor(n/2)} binomial(n+5*k,k) * binomial(n+4*k,n-2*k) / (6*k+1) = Sum_{k=0..floor(n/2)} binomial(n+5*k,7*k) * binomial(7*k,k) / (6*k+1).