cp's OEIS Frontend

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.

A375470 a(n) = Sum_{k=0..floor(n/3)} (k+1) * binomial(k,n-3*k)^2.

This page as a plain text file.
%I A375470 #10 Oct 17 2024 08:22:52
%S A375470 1,0,0,2,2,0,3,12,3,4,36,36,9,80,180,86,155,600,607,402,1581,2808,
%T A375470 1967,3780,9816,10376,10584,28626,44918,41184,77627,160436,181044,
%U A375470 228972,499512,735654,811823,1467072,2640231,3191642,4494502,8566308,12280547,15315974,26498718
%N A375470 a(n) = Sum_{k=0..floor(n/3)} (k+1) * binomial(k,n-3*k)^2.
%F A375470 G.f.: (1-x^3-x^4)/((1-x^3-x^4)^2 - 4*x^7)^(3/2).
%o A375470 (PARI) a(n) = sum(k=0, n\3, (k+1)*binomial(k, n-3*k)^2);
%Y A375470 Cf. A182884, A375218.
%Y A375470 Cf. A376721.
%K A375470 nonn
%O A375470 0,4
%A A375470 _Seiichi Manyama_, Oct 17 2024