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.

A070260 Third diagonal of triangle defined in A051537.

This page as a plain text file.
%I A070260 #20 Oct 08 2023 04:44:51
%S A070260 3,2,15,6,35,12,63,20,99,30,143,42,195,56,255,72,323,90,399,110,483,
%T A070260 132,575,156,675,182,783,210,899,240,1023,272,1155,306,1295,342,1443,
%U A070260 380,1599,420,1763,462,1935,506,2115,552,2303,600,2499,650,2703,702
%N A070260 Third diagonal of triangle defined in A051537.
%H A070260 Colin Barker, <a href="/A070260/b070260.txt">Table of n, a(n) for n = 1..1000</a>
%H A070260 <a href="/index/Rec#order_06">Index entries for linear recurrences with constant coefficients</a>, signature (0,3,0,-3,0,1).
%F A070260 From _Vladeta Jovovic_, May 09 2002: (Start)
%F A070260 a(n) = n*(n+2)/4 if n is even else n*(n+2).
%F A070260 a(n) = 3*a(n-2) - 3*a(n-4) + a(n-6).
%F A070260 G.f.: x*(3 + 2*x + 6*x^2 - x^4)/(1 - x^2)^3. (End)
%F A070260 E.g.f.: (x/4)*((12 + x)*cosh(x) + (3 + 4*x)*sinh(x)). - _G. C. Greubel_, Jul 20 2017
%F A070260 From _Amiram Eldar_, Oct 08 2023: (Start)
%F A070260 Sum_{n>=1} 1/a(n) = 3/2.
%F A070260 Sum_{n>=1} (-1)^n/a(n) = 1/2.
%F A070260 Sum_{k=1..n} a(k) ~ (5/24) * n^3. (End)
%t A070260 Table[ LCM[i + 2, i] / GCD[i + 2, i], {i, 1, 60}]
%t A070260 LinearRecurrence[{0,3,0,-3,0,1},{3,2,15,6,35,12},60] (* _Harvey P. Dale_, Sep 14 2019 *)
%o A070260 (PARI) Vec(x*(3+2*x+6*x^2-x^4) / (1-x^2)^3 + O(x^60)) \\ _Colin Barker_, Mar 27 2017
%Y A070260 Bisections: A002378, A000466.
%Y A070260 Cf. A051537.
%K A070260 nonn,easy
%O A070260 1,1
%A A070260 _Amarnath Murthy_, May 09 2002
%E A070260 More terms from _Vladeta Jovovic_, May 09 2002