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.

Showing 1-5 of 5 results.

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

Original entry on oeis.org

1, 3, 10, 34, 122, 450, 1723, 6758, 27135, 110913, 460395, 1935233, 8222504, 35255000, 152353021, 662892684, 2901595559, 12768195617, 56450822365, 250637657015, 1117060889815, 4995815027658, 22413020866875, 100842092305575, 454912716037387
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, (2^k+subst(A, x, x^k))*x^k/k)+x*O(x^n))); Vec(A);

Formula

A(x) = B(x)/(1 - 2*x) where B(x) is the g.f. of A363545.
A(x) = Sum_{k>=0} a(k) * x^k = 1/(1-2*x) * 1/Product_{k>=0} (1-x^(k+1))^a(k).
a(0) = 1; a(n) = (1/n) * Sum_{k=1..n} ( 2^k + Sum_{d|k} d * a(d-1) ) * a(n-k).

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

Original entry on oeis.org

1, 1, 5, 22, 105, 497, 2431, 11976, 59928, 302816, 1545660, 7955132, 41255625, 215378364, 1131134574, 5972272636, 31684600709, 168824599282, 903080385252, 4848038120323, 26110774945462, 141048622038068, 764026532321068, 4149020129689451
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-3*x^k)))+x*O(x^n))); Vec(A);

Formula

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

A363580 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, 0, 2, 0, 2, 1, 6, -2, 11, -1, 30, -21, 76, -60, 223, -245, 653, -817, 2031, -2935, 6521, -10067, 21455, -35425, 72152, -123756, 246752, -436854, 855852, -1546777, 3001811, -5513604, 10630676, -19747742, 37949424, -71115077, 136415279, -257301742, 493313335
Offset: 0

Views

Author

Seiichi Manyama, Jun 10 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 A363578.
a(n) = A363578(n) + 2*A363578(n-1) for n > 0.

A363581 G.f. satisfies A(x) = exp( Sum_{k>=1} A(x^k) * x^k/(k * (1 + 3*x^k)) ).

Original entry on oeis.org

1, 1, -1, 4, -6, 11, -22, 62, -151, 353, -867, 2261, -5861, 15178, -39878, 106099, -283823, 763248, -2065453, 5621318, -15368682, 42190539, -116281176, 321647511, -892617214, 2484583934, -6935203356, 19408586888, -54447145335, 153084848495
Offset: 0

Views

Author

Seiichi Manyama, Jun 10 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+3*x^k)))+x*O(x^n))); Vec(A);

Formula

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

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

Original entry on oeis.org

1, 1, 4, 13, 47, 168, 635, 2420, 9460, 37445, 150309, 609568, 2495710, 10298332, 42793974, 178910161, 752034697, 3176346092, 13473881397, 57378127986, 245205968960, 1051257068207, 4520229295852, 19488595397346, 84231899582543, 364893870958302
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-x^k)^2))+x*O(x^n))); Vec(A);

Formula

A(x) = (1 - x)^2 * (B(x)/x - 2) where B(x) is the g.f. of A029857.
Showing 1-5 of 5 results.