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.

A363545 G.f. satisfies A(x) = exp( Sum_{k>=1} A(x^k) * x^k/(k * (1 - 2*x^k)) ).

Original entry on oeis.org

1, 1, 4, 14, 54, 206, 823, 3312, 13619, 56643, 238569, 1014443, 4352038, 18809992, 81843021, 358186642, 1575810191, 6965004499, 30914431131, 137736012285, 615785575785, 2761693248028, 12421390811559, 56016050571825, 253228531426237
Offset: 0

Views

Author

Seiichi Manyama, Jun 09 2023

Keywords

Crossrefs

Programs

  • PARI
    seq(n) = my(A=1); for(i=1, n, A=exp(sum(k=1, i, subst(A, x, x^k)*x^k/(k*(1-2*x^k)))+x*O(x^n))); Vec(A);

Formula

A(x) = (1 - 2*x) * B(x) where B(x) is the g.f. of A362389.
a(n) = A362389(n) - 2*A362389(n-1) for n > 0.