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.

A379932 E.g.f. A(x) satisfies A(x) = ( exp(-x) + x*A(x) )^2.

Original entry on oeis.org

1, 0, 2, 10, 88, 978, 13468, 221338, 4233584, 92458018, 2271283684, 62012911530, 1863436238728, 61124896911154, 2173660174175228, 83304031307483962, 3423089366607304672, 150143469737701318722, 7001969736087834197716, 345972733119776006045386
Offset: 0

Views

Author

Seiichi Manyama, Jan 06 2025

Keywords

Crossrefs

Programs

  • PARI
    my(N=20, x='x+O('x^N)); Vec(serlaplace(4*exp(-2*x)/(1+sqrt(1-4*x*exp(-x)))^2))
    
  • PARI
    a(n) = -2*n!*sum(k=0, n, (-k-2)^(n-k-1)*binomial(2*k+1, k)/(n-k)!);

Formula

E.g.f.: B(x)^2, where B(x) is the e.g.f. of A379879.
a(n) = -2 * n! * Sum_{k=0..n} (-k-2)^(n-k-1) * binomial(2*k+1,k)/(n-k)!.

A379939 E.g.f. A(x) satisfies A(x) = ( exp(-x*A(x)^(2/3)) + x*A(x) )^3.

Original entry on oeis.org

1, 0, 3, 6, 117, 852, 16335, 231354, 5169801, 109149768, 2929053339, 81073827150, 2593779841917, 87970941597276, 3298932148606887, 131818125152516418, 5692856683050644625, 261303806858004143376, 12794600152539073620531, 662722202747157809616918
Offset: 0

Views

Author

Seiichi Manyama, Jan 07 2025

Keywords

Crossrefs

Programs

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

Formula

E.g.f.: B(x)^3, where B(x) is the e.g.f. of A379877.
a(n) = -3 * n! * Sum_{k=0..n} (-2*n-3)^(n-k-1) * binomial(2*n+k+2,k)/(n-k)!.
Showing 1-2 of 2 results.