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

A381181 Expansion of e.g.f. (1/x) * Series_Reversion( x / (1 + sin(x)) ).

Original entry on oeis.org

1, 1, 2, 5, 8, -79, -1584, -20539, -223616, -1855295, -1736960, 435730789, 14511117312, 338965239601, 6202042886144, 71638247035109, -714560796196864, -84697775518956799, -3650903032332091392, -115829159202293866939, -2739961030150105333760, -29414406825401517785039
Offset: 0

Views

Author

Seiichi Manyama, Feb 16 2025

Keywords

Crossrefs

Programs

  • PARI
    a136630(n, k) = 1/(2^k*k!)*sum(j=0, k, (-1)^(k-j)*(2*j-k)^n*binomial(k, j));
    a(n) = sum(k=0, n, k!*binomial(n+1, k)*I^(n-k)*a136630(n, k))/(n+1);

Formula

E.g.f. A(x) satisfies A(x) = 1 + sin(x * A(x)).
a(n) = (1/(n+1)) * Sum_{k=0..n} k! * binomial(n+1,k) * i^(n-k) * A136630(n,k), where i is the imaginary unit.

A381182 E.g.f. A(x) satisfies A(x) = 1/( 1 - A(x) * sin(x * A(x)) ).

Original entry on oeis.org

1, 1, 6, 71, 1288, 31661, 984640, 37085075, 1641305472, 83497838425, 4801347029504, 307975150996831, 21802395720298496, 1688562016007776261, 142023935786330431488, 12892154760586821775019, 1256251152910271399624704, 130793914073764385411654321, 14490427167940362294881615872
Offset: 0

Views

Author

Seiichi Manyama, Feb 16 2025

Keywords

Crossrefs

Programs

  • PARI
    a136630(n, k) = 1/(2^k*k!)*sum(j=0, k, (-1)^(k-j)*(2*j-k)^n*binomial(k, j));
    a(n) = sum(k=0, n, k!*binomial(n+2*k+1, k)/(n+2*k+1)*I^(n-k)*a136630(n, k));

Formula

a(n) = Sum_{k=0..n} k! * binomial(n+2*k+1,k)/(n+2*k+1) * i^(n-k) * A136630(n,k), where i is the imaginary unit.
Showing 1-2 of 2 results.