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-4 of 4 results.

A366452 G.f. A(x) satisfies A(x) = 1 + x + x*A(x)^(5/2).

Original entry on oeis.org

1, 2, 5, 20, 90, 440, 2266, 12110, 66525, 373320, 2130865, 12332512, 72202860, 426861830, 2544727475, 15280236800, 92333523153, 561054410200, 3426075429740, 21013974400920, 129403499560500, 799733464576880, 4958649842375975, 30837325310579350
Offset: 0

Views

Author

Seiichi Manyama, Oct 10 2023

Keywords

Crossrefs

Programs

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

Formula

G.f.: A(x) = 1/B(-x) where B(x) is the g.f. of A366404.
a(n) = Sum_{k=0..n} binomial(3*k/2+1,n-k) * binomial(5*k/2,k) / (3*k/2+1).
G.f.: A(x) = B(x)^2 where B(x) is the g.f. of A259757. - Seiichi Manyama, Apr 04 2024

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

Original entry on oeis.org

1, 2, 7, 42, 287, 2142, 16898, 138600, 1170037, 10098774, 88712736, 790540296, 7128879940, 64933227996, 596523624144, 5520761026854, 51424824505054, 481741853731110, 4535711525840271, 42897532229559714, 407358615638833341, 3882484733036731500
Offset: 0

Views

Author

Seiichi Manyama, Oct 10 2023

Keywords

Crossrefs

Programs

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

Formula

G.f.: A(x) = 1/B(-x) where B(x) is the g.f. of A366405.
a(n) = Sum_{k=0..n} binomial(5*k/2+1,n-k) * binomial(7*k/2,k) / (5*k/2+1).
G.f.: A(x) = B(x)^2 where B(x) is the g.f. of A295537. - Seiichi Manyama, Apr 04 2024

A366454 G.f. A(x) satisfies A(x) = 1 + x + x/A(x)^(3/2).

Original entry on oeis.org

1, 2, -3, 12, -58, 312, -1794, 10794, -67113, 427800, -2780677, 18360504, -122809416, 830379966, -5666465445, 38974338126, -269915089194, 1880576960904, -13172489198859, 92705253700620, -655219698720486, 4648722344211012, -33096948925057703
Offset: 0

Views

Author

Seiichi Manyama, Oct 10 2023

Keywords

Crossrefs

Programs

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

Formula

G.f.: A(x) = 1/B(-x) where B(x) is the g.f. of A366400.
a(n) = (-1)^(n-1) * Sum_{k=0..n} binomial(5*k/2-1,k) * binomial(n+3*k/2-2,n-k) / (5*k/2-1).

A366455 G.f. A(x) satisfies A(x) = 1 + x + x/A(x)^(5/2).

Original entry on oeis.org

1, 2, -5, 30, -215, 1710, -14516, 128830, -1180920, 11093830, -106245975, 1033454774, -10181848705, 101394979530, -1018972470275, 10320779179380, -105250097458410, 1079767027094630, -11136159773691830, 115395278542757580, -1200814926210284360
Offset: 0

Views

Author

Seiichi Manyama, Oct 10 2023

Keywords

Crossrefs

Programs

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

Formula

G.f.: A(x) = 1/B(-x) where B(x) is the g.f. of A366401.
a(n) = (-1)^(n-1) * Sum_{k=0..n} binomial(7*k/2-1,k) * binomial(n+5*k/2-2,n-k) / (7*k/2-1).
Showing 1-4 of 4 results.