login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


E.g.f.: Sum_{n>=1} x^(n^2) * exp(3*x^n) / n!.
4

%I #10 Aug 24 2023 02:31:10

%S 1,6,27,120,405,2538,5103,108216,119529,8361630,649539,1049941764,

%T 6908733,88290340362,980827520535,11464174875312,731794257,

%U 6190869041758134,7360989291,502057591673645340,28738655044809032421,30483502110703514466,721764371007,330783478823633485162248,129260083701485621612025,894884766137985799525518

%N E.g.f.: Sum_{n>=1} x^(n^2) * exp(3*x^n) / n!.

%F E.g.f.: -exp(3) + Sum_{n>=0} (3 + x^n)^n / n!.

%F a(n) = Sum_{d|n} 3^(d-n/d) * binomial(d, n/d) * n!/d! for n>=1.

%e E.g.f.: A(x) = x + 6*x^2/2! + 27*x^3/3! + 120*x^4/4! + 405*x^5/5! + 2538*x^6/6! + ...

%e where

%e A(x) = x*exp(3*x) + x^4*exp(3*x^2)/2! + x^9*exp(3*x^3)/3! + x^16*exp(3*x^4)/4! + x^25*exp(3*x^5)/5! + x^36*exp(3*x^6)/6! + ...

%e also

%e A(x) = -exp(3) + 1 + (3+x) + (3+x^2)^2/2! + (3+x^3)^3/3! + (3+x^4)^4/4! + (3+x^5)^5/5! + (3+x^6)^6/6! + ...

%t a[n_] := DivisorSum[n, 3^(#-n/#) * Binomial[#, n/#] * n!/#! &]; Array[a, 25] (* _Amiram Eldar_, Aug 24 2023 *)

%o (PARI) {a(n) = local(A=1); A = sum(m=1, n, x^(m^2) * exp(3*x^m +x*O(x^n)) / m!); n!*polcoeff(A, n)}

%o for(n=1, 30, print1(a(n), ", "))

%o (PARI) {a(n) = local(A=1); A = -exp(3) + sum(m=0, n, (3 + x^m +x*O(x^n))^m/m!); if(n==0, 0, n!*polcoeff(A, n))}

%o for(n=1, 30, print1(a(n), ", "))

%o (PARI) {a(n) = if(n<1, 0, sumdiv(n, d, 3^(d-n/d) * binomial(d, n/d) * n!/d! ) )}

%o for(n=1, 30, print1(a(n), ", "))

%Y Cf. A259209, A259223, A265270.

%K nonn

%O 1,2

%A _Paul D. Hanna_, Dec 23 2015

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 23 04:24 EDT 2024. Contains 376142 sequences. (Running on oeis4.)