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 A368892 #10 Jan 09 2024 08:45:16 %S A368892 1,1,4,28,264,3200,47521,835569,16974208,391147867,10080150040, %T A368892 287244283821,8967781893889,304393809948904,11160668048222588, %U A368892 439582708115133751,18509867068477014112,829768603643818659302,39454459640462073466945 %N A368892 a(n) = Sum_{k=0..floor(n/3)} n^(n-3*k) * binomial(n-2*k,k). %F A368892 a(n) = [x^n] 1/(1 - n*x - x^3). %F A368892 a(n) ~ n^n. - _Vaclav Kotesovec_, Jan 09 2024 %t A368892 Join[{1}, Table[n^n * HypergeometricPFQ[{1/3 - n/3, 2/3 - n/3, -n/3}, {1/2 - n/2, -n/2}, -27/(4*n^3)], {n, 1, 20}]] (* _Vaclav Kotesovec_, Jan 09 2024 *) %o A368892 (PARI) a(n) = sum(k=0, n\3, n^(n-3*k)*binomial(n-2*k, k)); %Y A368892 Cf. A368891, A368893. %Y A368892 Cf. A117716, A084845. %K A368892 nonn,easy %O A368892 0,3 %A A368892 _Seiichi Manyama_, Jan 09 2024