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 A360783 #12 Feb 20 2023 12:27:25 %S A360783 1,1,1,1,3,7,13,24,55,133,301,678,1639,4120,10253,25591,65869,173551, %T A360783 459493,1225379,3325123,9162046,25451181,71296499,202144225,579612934, %U A360783 1675822453,4885178596,14376297345,42690792651,127757371105,385241085261,1170960103855 %N A360783 Expansion of Sum_{k>=0} x^k / (1 - k*x^3)^(k+1). %F A360783 a(n) = Sum_{k=0..floor(n/3)} (n-3*k)^k * binomial(n-2*k,k). %o A360783 (PARI) my(N=40, x='x+O('x^N)); Vec(sum(k=0, N, x^k/(1-k*x^3)^(k+1))) %o A360783 (PARI) a(n) = sum(k=0, n\3, (n-3*k)^k*binomial(n-2*k, k)); %Y A360783 Cf. A000248, A360782. %Y A360783 Cf. A000930. %K A360783 nonn,easy %O A360783 0,5 %A A360783 _Seiichi Manyama_, Feb 20 2023