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.
%I A346039 #18 Jul 07 2021 11:24:23 %S A346039 1,-1,-1,3,1,17,-119,165,1191,-21989,169527,-317837,-7182779,54452161, %T A346039 292654649,-4320853051,-46883217705,728176373539,9943868087879, %U A346039 -166076498591597,-2748733072385043,65290726021558089,151614363753006601,-11661992771499644571 %N A346039 Expansion of e.g.f. Product_{k>=1} exp(1 - exp(x^k))^(1/k!). %H A346039 Seiichi Manyama, <a href="/A346039/b346039.txt">Table of n, a(n) for n = 0..464</a> %F A346039 E.g.f.: exp( Sum_{k>=1} (1 - exp(x^k))/k! ). %F A346039 E.g.f.: exp( -Sum_{k>=1} A121860(k)*x^k/k! ). %F A346039 a(n) = -(n-1)! * Sum_{k=1..n} k * (Sum_{d|k} 1/(d! * (k/d)!)) * a(n-k)/(n-k)! for n > 0. %o A346039 (PARI) my(N=40, x='x+O('x^N)); Vec(serlaplace(prod(k=1, N, exp(1-exp(x^k))^(1/k!)))) %o A346039 (PARI) my(N=40, x='x+O('x^N)); Vec(serlaplace(exp(sum(k=1, N, (1-exp(x^k))/k!)))) %o A346039 (PARI) my(N=40, x='x+O('x^N)); Vec(serlaplace(exp(-sum(k=1, N, sumdiv(k, d, 1/(d!*(k/d)!))*x^k)))) %o A346039 (PARI) a(n) = if(n==0, 1, -(n-1)!*sum(k=1, n, k*sumdiv(k, d, 1/(d!*(k/d)!))*a(n-k)/(n-k)!)); %Y A346039 Cf. A000587, A121860, A330199, A345762, A346037, A346058. %K A346039 sign %O A346039 0,4 %A A346039 _Seiichi Manyama_, Jul 02 2021