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 A386655 #14 Aug 24 2025 10:30:45 %S A386655 1,3,23,708,82677,39043808,75384175459,594418947869568, %T A386655 19030890530555146281,2460681168464503636482816, %U A386655 1280084112577610436036966382815,2672769582069469500760580570122074560,22366167041278673568399013569832022272725469 %N A386655 E.g.f.: Sum_{n>=0} (2^n*x + LambertW(x))^n / n!. %C A386655 Conjecture: for n >= 6, a(n) (mod 6) equals [1, 0, 3, 0, 3, 2] repeating. %C A386655 In general, the following sums are equal: %C A386655 (C.1) Sum_{n>=0} (q^n + p)^n * r^n/n!, %C A386655 (C.2) Sum_{n>=0} q^(n^2) * exp(p*q^n*r) * r^n/n!; %C A386655 here, q = 2 with p = LambertW(x)/x, r = x. %F A386655 E.g.f. A(x) = Sum_{n>=0} a(n)*x^n/n! satisfies the following formulas. %F A386655 (1) A(x) = Sum_{n>=0} (2^n*x + LambertW(x))^n / n!. %F A386655 (2) A(x) = Sum_{n>=0} 2^(n^2) * exp( LambertW(x) * 2^n ) * x^n / n!. %F A386655 (3) A(x) = Sum_{n>=0} 2^(n^2) * (x/LambertW(x))^(2^n) * x^n / n!. %F A386655 (4) A(x) = Sum_{n>=0} 2^(n*(n+1)) * x^n/n! * Sum_{k>=0} (2^n - k)^(k-1) * x^k/k!. %F A386655 a(n) = Sum_{k=0..n} binomial(n,k) * 2^(k*(k+1)) * (2^k - (n-k))^(n-k-1). %F A386655 a(n) = Sum_{k=0..n} binomial(n,k) * 2^(n*k) * (1 - (n-k)/2^k)^(n-k-1). %F A386655 a(n) ~ 2^(n^2). - _Vaclav Kotesovec_, Aug 23 2025 %e A386655 E.g.f.: A(x) = 1 + 3*x + 23*x^2/2! + 708*x^3/3! + 82677*x^4/4! + 39043808*x^5/5! + 75384175459*x^6/6! + 594418947869568*x^7/7! + ... %e A386655 where A(x) = Sum_{n>=0} (2^n*x + LambertW(x))^n / n!. %e A386655 RELATED SERIES. %e A386655 LambertW(x) = x - 2*x^2/2! + 3^2*x^3/3! - 4^3*x^4/4! + 5^4*x^5/5! - 6^5*x^6/6! + 7^6*x^7/7! + ... + (-1)^(n-1) * n^(n-1)*x^n/n! + ... %e A386655 where exp(LambertW(x)) = x/LambertW(x); %e A386655 also, (x/LambertW(x))^y = Sum_{k>=0} y*(y - k)^(k-1) * x^k/k!. %t A386655 nmax = 15; Join[{1}, Rest[CoefficientList[Series[Sum[(2^k*x + LambertW[x])^k/k!, {k, 1, nmax}], {x, 0, nmax}], x] * Range[0, nmax]!]] (* _Vaclav Kotesovec_, Aug 23 2025 *) %o A386655 (PARI) {a(n) = sum(k=0,n, binomial(n,k) * 2^(k*(k+1)) * (2^k - (n-k))^(n-k-1) )} %o A386655 for(n=0, 12, print1(a(n), ", ")) %o A386655 (PARI) {a(n) = my(A = sum(m=0, n, (2^m + lambertw(x +x^3*O(x^n))/x)^m *x^m/m! )+x*O(x^n)); n! * polcoeff(A, n)} %o A386655 for(n=0, 12, print1(a(n), ", ")) %Y A386655 Cf. A386656 (q=3), A386657 (q=4), A386658 (q=5), A386648. %K A386655 nonn,new %O A386655 0,2 %A A386655 _Paul D. Hanna_, Aug 23 2025