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.

A381141 Expansion of e.g.f. exp( -LambertW(-x * cos(x)) ).

Original entry on oeis.org

1, 1, 3, 13, 89, 821, 9667, 137817, 2306705, 44308009, 960645251, 23205700453, 618086944873, 17996847978461, 568729575572355, 19387150575025201, 709130794848586657, 27704208465508996945, 1151379111946617111043, 50721472225191792506301, 2360928161776701549045241
Offset: 0

Views

Author

Seiichi Manyama, Feb 15 2025

Keywords

Comments

As stated in the comment of A185951, A185951(n,0) = 0^n.

Crossrefs

Programs

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

Formula

E.g.f. A(x) satisfies A(x) = exp( x * cos(x) * A(x) ).
a(n) = Sum_{k=0..n} (k+1)^(k-1) * i^(n-k) * A185951(n,k), where i is the imaginary unit.

A381146 E.g.f. A(x) satisfies A(x) = exp( x * cos(x * A(x)) ).

Original entry on oeis.org

1, 1, 1, -2, -35, -264, -1019, 9864, 302905, 4181824, 23080201, -632195200, -25239729899, -478790195584, -2682065360883, 188875659540736, 8843706554450033, 203538869514047488, 751681101659548177, -169782541027003551744, -8866196526809624969139
Offset: 0

Views

Author

Seiichi Manyama, Feb 15 2025

Keywords

Comments

As stated in the comment of A185951, A185951(n,0) = 0^n.

Crossrefs

Programs

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

Formula

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