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.

A008354 a(n) = (5*n^2 + 1)*n^2 / 6.

This page as a plain text file.
%I A008354 #44 Feb 12 2018 11:25:59
%S A008354 0,1,14,69,216,525,1086,2009,3424,5481,8350,12221,17304,23829,32046,
%T A008354 42225,54656,69649,87534,108661,133400,162141,195294,233289,276576,
%U A008354 325625,380926,442989,512344,589541,675150,769761,873984,988449,1113806,1250725,1399896
%N A008354 a(n) = (5*n^2 + 1)*n^2 / 6.
%C A008354 Partial sums of A005902. - _Jonathan Vos Post_, Mar 14 2006
%H A008354 Muniru A Asiru, <a href="/A008354/b008354.txt">Table of n, a(n) for n = 0..1000</a>
%H A008354 <a href="/index/Rec#order_05">Index entries for linear recurrences with constant coefficients</a>, signature (5, -10, 10, -5, 1).
%F A008354 From _R. J. Mathar_, Aug 10 2008: (Start)
%F A008354 O.g.f.: x*(1 + x)*(x^2 + 8*x + 1)/(1 - x)^5.
%F A008354 a(n) = n*A004068(n). (End)
%F A008354 a(n) = 5*a(n-1) - 10*a(n-2) + 10*a(n-3) - 5*a(n-4) + a(n-5) for n>4, a(0)=0, a(1)=1, a(2)=14, a(3)=69, a(4)=216. - _Harvey P. Dale_, Feb 12 2015
%p A008354 a:= n-> 5*n^4/6 + n^2/6: seq(a(n), n=0..45);
%t A008354 Table[n^2 (5 n^2 + 1)/6, {n, 0, 30}] (* or *) LinearRecurrence[{5, -10, 10, -5, 1}, {0, 1, 14, 69, 216}, 30] (* _Harvey P. Dale_, Feb 12 2015 *)
%o A008354 (GAP) List([0..30], n -> (5*n^2+1)*n^2/6); # _Muniru A Asiru_, Feb 12 2018
%Y A008354 Cf. A005901, A005902.
%K A008354 nonn,easy
%O A008354 0,3
%A A008354 _N. J. A. Sloane_ and _J. H. Conway_
%E A008354 Definition corrected by _R. J. Mathar_, Aug 10 2008