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.

A035028 First differences of A002002.

This page as a plain text file.
%I A035028 #19 Oct 20 2022 03:34:45
%S A035028 4,20,104,552,2972,16172,88720,489872,2719028,15157188,84799992,
%T A035028 475894200,2677788492,15102309468,85347160608,483183316512,
%U A035028 2739851422820,15558315261812,88462135512712,503569008273992,2869602773253884,16368396446913420,93449566652932784
%N A035028 First differences of A002002.
%H A035028 G. C. Greubel, <a href="/A035028/b035028.txt">Table of n, a(n) for n = 0..1000</a>
%F A035028 a(n) = A049600(n, n-3).
%F A035028 D-finite with recurrence: (n+2)*a(n) - (7*n+8)*a(n-1) + (7*n-8)*a(n-2) - (n-2)*a(n-3) = 0. - _R. J. Mathar_, Jan 28 2020
%F A035028 a(n) = ((n+1)*(n+3)*A001850(n+3) - (6*n^2 +22*n +17)*A001850(n+2) + (n+2)*(5*n+8)*A001850(n+1))/(2*(n+1)*(n+2)), A001850(n) = LegrndreP(n, 3). - _G. C. Greubel_, Oct 19 2022
%t A035028 Differences[CoefficientList[Series[((1-x)/Sqrt[1-6x+x^2]-1)/2, {x,0,30}], x]] (* _Harvey P. Dale_, Jun 04 2011 *)
%t A035028 With[{P=LegendreP}, Table[(n*(n+2)*P[n+2,3] -(6*n^2+10*n+1)*P[n+1,3] +(n+1)*(5*n+ 3)*P[n,3])/(2*n*(n+1)), {n,30}]] (* _G. C. Greubel_, Oct 19 2022 *)
%o A035028 (Magma) I:=[4,20,104]; [n le 3 select I[n] else ( (7*n+1)*Self(n-1) - (7*n-15)*Self(n-2) + (n-3)*Self(n-3) )/(n+1): n in [1..30]]; // _G. C. Greubel_, Oct 19 2022
%o A035028 (SageMath)
%o A035028 def A001850(n): return gen_legendre_P(n,0,3)
%o A035028 def A035028(n): return ((n+1)*(n+3)*A001850(n+3) - (6*n^2 +22*n +17)*A001850(n+2) + (n+2)*(5*n+8)*A001850(n+1))/(2*(n+1)*(n+2))
%o A035028 [A035028(n) for n in range(40)] # _G. C. Greubel_, Oct 19 2022
%Y A035028 Cf. A001850, A002002, A035029, A049600.
%K A035028 nonn
%O A035028 0,1
%A A035028 _N. J. A. Sloane_
%E A035028 More terms from _Harvey P. Dale_, Jun 04 2011