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.

A381345 Expansion of e.g.f. 1/( 1 - x * cos(sqrt(2)*x) ).

Original entry on oeis.org

1, 1, 2, 0, -24, -220, -1200, -2576, 52864, 1016208, 10909440, 57039488, -687971328, -26190716864, -450123634688, -4238375059200, 24514848522240, 2156422420074752, 54984136073084928, 799573460292407296, 42320889956270080, -425007017470737816576, -15563879892284330213376
Offset: 0

Views

Author

Seiichi Manyama, Feb 20 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!*(-2)^((n-k)/2)*a185951(n, k));

Formula

a(0) = 1; a(n) = Sum_{k=0..floor((n-1)/2)} (-2)^k * (2*k+1) * binomial(n,2*k+1) * a(n-2*k-1).
a(n) = Sum_{k=0..n} k! * (-2)^((n-k)/2) * A185951(n,k).

A381343 Expansion of e.g.f. exp( sin(sqrt(2)*x) / sqrt(2) ).

Original entry on oeis.org

1, 1, 1, -1, -7, -15, 25, 287, 721, -2847, -30255, -61697, 682761, 5861713, 3105193, -258188513, -1681060063, 4623681473, 135471132705, 564325398271, -6357495670375, -89817656595791, -84337394884167, 7820620314702879, 67277670159083761, -322108989883888479
Offset: 0

Views

Author

Seiichi Manyama, Feb 20 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, (-2)^((n-k)/2)*a136630(n, k));

Formula

a(0) = 1; a(n) = Sum_{k=0..floor((n-1)/2)} (-2)^k * binomial(n-1,2*k) * a(n-2*k-1).
a(n) = Sum_{k=0..n} (-2)^((n-k)/2) * A136630(n,k).
Showing 1-2 of 2 results.