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.

A345758 E.g.f.: Product_{k>=1} (1 - (exp(x) - 1)^k)^(1/k!).

Original entry on oeis.org

1, -1, -2, -2, 4, 63, 448, 2490, 14733, 109151, 790418, 5861623, 91442844, 1857444743, 27708811583, 336714649323, 6016551711313, 167673369006642, 4183443404331446, 82140898773966502, 1493427665082817617, 37403762698805913754, 1340432910567030307828
Offset: 0

Views

Author

Seiichi Manyama, Jun 26 2021

Keywords

Comments

Stirling transform of A345762.

Crossrefs

Programs

  • PARI
    my(N=40, x='x+O('x^N)); Vec(serlaplace(prod(k=1, N, (1-(exp(x)-1)^k)^(1/k!))))
    
  • PARI
    my(N=40, x='x+O('x^N)); Vec(serlaplace(exp(-sum(k=1, N, (exp((exp(x)-1)^k)-1)/k))))

Formula

E.g.f.: exp( -Sum_{k>=1} (exp((exp(x) - 1)^k) - 1)/k ).
a(n) = Sum_{k=0..n} Stirling2(n,k) * A345762(k).

A345757 E.g.f.: Product_{k>=1} (1 + (exp(x) - 1)^k)^(1/k!).

Original entry on oeis.org

1, 1, 2, 8, 34, 137, 614, 3754, 25449, 82747, -1523792, -34833005, -335209288, 194665837, 59685834069, 715582325511, -10186972407657, -584687267399246, -10975484551366964, 8845584310341044, 8145484883568515927, 330326712925212377392, 7816903733527799885488
Offset: 0

Views

Author

Seiichi Manyama, Jun 26 2021

Keywords

Comments

Stirling transform of A298906.

Crossrefs

Programs

  • PARI
    my(N=40, x='x+O('x^N)); Vec(serlaplace(prod(k=1, N, (1+(exp(x)-1)^k)^(1/k!))))
    
  • PARI
    my(N=40, x='x+O('x^N)); Vec(serlaplace(exp(sum(k=1, N, (-1)^(k+1)*(exp((exp(x)-1)^k)-1)/k))))

Formula

E.g.f.: exp( Sum_{k>=1} (-1)^(k+1) * (exp((exp(x) - 1)^k) - 1)/k ).
a(n) = Sum_{k=0..n} Stirling2(n,k) * A298906(k).
Showing 1-2 of 2 results.