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.

A384649 G.f. A(x) satisfies A(x) = 1/( 1 - x*A(x*A(x)^4) ).

Original entry on oeis.org

1, 1, 2, 9, 56, 432, 3935, 40820, 471633, 5980210, 82329140, 1220547845, 19359684220, 326799737576, 5844913732057, 110341722975077, 2191461358459051, 45656013573862832, 995196646595460516, 22644288881875546322, 536706817952488705651, 13225669497771610891404
Offset: 0

Views

Author

Seiichi Manyama, Jun 06 2025

Keywords

Crossrefs

Column k=1 of A384653.

Programs

  • PARI
    a(n, k=1) = if(k==0, 0^n, k*sum(j=0, n, binomial(4*n-3*j+k, j)/(4*n-3*j+k)*a(n-j, j)));

Formula

See A384653.