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 A168407 #9 Jul 02 2025 11:21:04 %S A168407 1,2,20,712,91920,44874784,85939843136,660213878210688, %T A168407 20540390859740217600,2592165941692975372042752, %U A168407 1324271564605167892188248409088,2730585827960928853182474922961668096 %N A168407 E.g.f.: Sum_{n>=0} (exp(2^n*x) - 1)^n/n!, an analog of the Bell numbers (A000110). %F A168407 a(n) = exp(-2^n) * Sum_{k>=0} (2^k*k)^n/k!. %F A168407 a(n) = [x^n/n! ] B(x)^(2^n), where B(x) = exp(exp(x) - 1) is the e.g.f. of the Bell numbers. %F A168407 a(n) = Sum_{k=0..n} S2(n,k) * 2^(n*k), where S2(n,k) = A008277(n,k) are the Stirling numbers of the second kind. %F A168407 G.f.: A(x) = Sum_{n>=0} 2^(n^2) * x^n / [Product_{k=1..n} (1 - k*2^n*x)]. %F A168407 a(n) ~ 2^(n^2). - _Vaclav Kotesovec_, Jul 02 2025 %e A168407 E.g.f.: A(x) = 1 + 2*x + 20*x^2/2! + 712*x^3/3! + 91920*x^4/4! +... %e A168407 A(x) = 1 + (exp(2*x) - 1) + (exp(4*x) - 1)^2/2! + (exp(8*x) - 1)^3/3! +...+ (exp(2^n*x) - 1)^n/n! +... %e A168407 a(n) = coefficient of x^n/n! in Bell(x)^(2^n) where Bell(x) = exp(exp(x)-1): %e A168407 Bell(x) = 1 + x + 2*x^2/2! + 5*x^3/3! + 15*x^4/4! + 52*x^5/5! + 203*x^6/6! +...+ A000110(n)*x^n/n! +... %t A168407 Table[BellB[n, 2^n], {n, 0, 15}] (* _Vaclav Kotesovec_, Jul 02 2025 *) %o A168407 (PARI) {a(n)=local(infnty=n^4+10);round(exp(-2^n)*sum(k=0,infnty,(2^k*k)^n/k!))} %o A168407 (PARI) {a(n)=n!*polcoeff(sum(k=0,n,(exp(2^k*x +x*O(x^n))-1)^k/k!),n)} %o A168407 (PARI) {a(n)=n!*polcoeff(exp(2^n*(exp(x +x*O(x^n))-1)),n)} %o A168407 (PARI) {S2(n,k)=(1/k!)*sum(i=0,k,(-1)^(k-i)*binomial(k,i)*i^n)} %o A168407 {a(n)=sum(k=0,n,S2(n,k)*2^(n*k))} %o A168407 (PARI) {a(n)=polcoeff(sum(k=0,n,(2^k*x)^k/prod(j=1,k,1-j*2^k*x+x*O(x^n))),n)} %Y A168407 Cf. A000110, A168408, A277036, A008277. %K A168407 nonn %O A168407 0,2 %A A168407 _Paul D. Hanna_, Nov 25 2009, Nov 25 2009, Feb 16 2010