# Greetings from The On-Line Encyclopedia of Integer Sequences! http://oeis.org/ Search: id:a360707 Showing 1-1 of 1 %I A360707 #11 Feb 20 2023 03:15:56 %S A360707 1,0,0,1,1,0,1,4,4,1,9,27,28,16,96,257,281,250,1251,3161,3665,4321, %T A360707 19489,47685,58662,84099,354739,852216,1110344,1837924,7401269, %U A360707 17604002,24221890,44761045,174287005,412627144,597640105,1204831674,4574415066,10818841343 %N A360707 G.f.: Sum_{k>=0} (1 + k*x)^k * x^(3*k). %H A360707 Seiichi Manyama, Table of n, a(n) for n = 0..1000 %F A360707 a(n) = Sum_{k=0..n} binomial(k,n-3*k) * k^(n-3*k). %F A360707 log(a(n)) ~ n/4 * log(n/4). %F A360707 a(n) ~ exp(exp(1/4)*n^(1/4)/4^(1/4)) * n^(n/4) / 4^(n/4 + 1) * (1 + 1/(2^(5/2)*exp(1/4)*n^(1/4)) + (67/(192*exp(1/2)) - 15*exp(1/2)/16)/sqrt(n)). %t A360707 nmax = 50; CoefficientList[Series[Sum[(1 + k*x)^k * x^(3*k), {k, 0, nmax}], {x, 0, nmax}], x] %t A360707 Join[{1}, Table[Sum[Binomial[k, n - 3*k] * k^(n - 3*k), {k, 0, n}], {n, 1, 50}]] %Y A360707 Cf. A360592, A360699, A360747. %K A360707 nonn %O A360707 0,8 %A A360707 _Vaclav Kotesovec_, Feb 17 2023 # Content is available under The OEIS End-User License Agreement: http://oeis.org/LICENSE