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.

A190577 a(n) = n*(n+2)*(n+4)*(n+6).

This page as a plain text file.
%I A190577 #45 Nov 28 2024 13:34:10
%S A190577 105,384,945,1920,3465,5760,9009,13440,19305,26880,36465,48384,62985,
%T A190577 80640,101745,126720,156009,190080,229425,274560,326025,384384,450225,
%U A190577 524160,606825,698880,801009,913920,1038345,1175040,1324785
%N A190577 a(n) = n*(n+2)*(n+4)*(n+6).
%C A190577 Each term is the difference between a square and a fourth power:
%C A190577 n*(n+2)*(n+4)*(n+6) = ((n+2)*(n+4)-2^2)^2-2^4. More generally,
%C A190577 n*(n+k)*(n+2*k)*(n+3*k) = ((n+k)*(n+2*k)-k^2)^2-k^4 for any k; in this case, k=2.
%D A190577 Miguel de Guzmán Ozámiz, Para Pensar Mejor, Editions Pyramid, 2001, p. 294-295.
%H A190577 Vincenzo Librandi, <a href="/A190577/b190577.txt">Table of n, a(n) for n = 1..1000</a>
%H A190577 Rafael Parra Machío, <a href="http://hojamat.es/parra/prop2011.pdf">Propiedades del 2011: Un paseo a través de los números primos</a>, section 7.3, p. 22.
%H A190577 <a href="/index/Rec#order_05">Index entries for linear recurrences with constant coefficients</a>, signature (5,-10,10,-5,1).
%F A190577 a(n) = ((n+2)*(n+4)-2^2)^2-2^4.
%F A190577 G.f.: 3*x*(5*x^3-25*x^2+47*x-35)/(x-1)^5.
%F A190577 a(n) = 5*a(n-1) - 10*a(n-2) + 10*a(n-3) - 5*a(n-4) + a(n-5). - _Wesley Ivan Hurt_, May 15 2023
%F A190577 From _Amiram Eldar_, Oct 03 2024: (Start)
%F A190577 Sum_{n>=1} 1/a(n) = 7/480.
%F A190577 Sum_{n>=1} (-1)^(n+1)/a(n) = 11/1440. (End)
%e A190577 a(3) = 945 = 3*(3+2)*(3+4)*(3+6) = ((3+2)*(3+2*2)-2^2)^2-2^4 = 31^2-2^4.
%e A190577 a(13) = 62985 = 13*(13+2)*(13+4)*(13+6) = ((13+2)*(13+2*2)+2^2)^2-2^4 = 251^2-2^4.
%t A190577 Table[n (n + 2) (n + 4) (n + 6), {n, 1, 15}]
%t A190577 Table[((n + 2) (n + 4) - 2^2)^2 - 2^4, {n, 1, 15}]
%t A190577 LinearRecurrence[{5,-10,10,-5,1},{105,384,945,1920,3465},40] (* _Harvey P. Dale_, Nov 28 2024 *)
%o A190577 (Magma) [((n+2)*(n+4)-2^2)^2-2^4: n in [1..40]]; // _Vincenzo Librandi_, May 23 2011
%o A190577 (Python)
%o A190577 def A190577(n): return n*(n*(n*(n + 12) + 44) + 48) # _Chai Wah Wu_, Mar 06 2024
%K A190577 nonn,easy
%O A190577 1,1
%A A190577 _Rafael Parra Machio_, May 18 2011