login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A263766 a(n) = Product_{k=1..n} (k^2 - 2). 2

%I #19 Aug 14 2022 12:15:17

%S 1,-1,-2,-14,-196,-4508,-153272,-7203784,-446634608,-35284134032,

%T -3457845135136,-411483571081184,-58430667093528128,

%U -9757921404619197376,-1893036752496124290944,-422147195806635716880512,-107225387734885472087650048

%N a(n) = Product_{k=1..n} (k^2 - 2).

%H Reinhard Zumkeller, <a href="/A263766/b263766.txt">Table of n, a(n) for n = 0..250</a>

%F a(n) = Gamma(1+sqrt(2)+n)*Gamma(1-sqrt(2)+n)*sin(Pi*sqrt(2))/(Pi*sqrt(2)).

%F a(n) = A263688(n+1)^2-A263687(n+1)^2/2.

%F a(n) ~ exp(-2*n)*n^(2*n+1)*sqrt(2)*sin(Pi*sqrt(2)).

%F G.f. for 1/a(n): hypergeom([1],[1-sqrt(2),1+sqrt(2)], x].

%F E.g.f. for 1/a(n): hypergeom([],[1-sqrt(2),1+sqrt(2)], x].

%F E.g.f. for a(n)/n!: hypergeom([1-sqrt(2),1+sqrt(2)], [1], x].

%F Recurrence: a(0) = 1, a(n) = (n^2-2)*a(n-1).

%F 0 = a(n)*(-24*a(n+2) - 15*a(n+3) + a(n+4)) + a(n+1)*(-9*a(n+2) - 4*a(n+3)) + a(n+2)*(+3*a(n+2)) if n>=0. - _Michael Somos_, Oct 30 2015

%e For n = 3, a(3) = (1^2 - 2)*(2^2 - 2)*(3^2 - 2) = -14.

%e G.f. = 1 - x - 2*x^2 - 14*x^3 - 196*x^4 - 4508*x^5 - 153272*x^6 + ...

%t Table[Product[k^2 - 2, {k, 1, n}], {n, 0, 16}]

%t Expand@Table[-Pochhammer[Sqrt[2], n+1] Pochhammer[-Sqrt[2], n+1]/2, {n, 0, 16}]

%t Join[{1},FoldList[Times,Range[20]^2-2]] (* _Harvey P. Dale_, Aug 14 2022 *)

%o (PARI) a(n) = prod(k=1, n, k^2-2); \\ _Michel Marcus_, Oct 25 2015

%o (Haskell)

%o a263766 n = a263766_list !! n

%o a263766_list = scanl (*) 1 a008865_list

%o -- _Reinhard Zumkeller_, Oct 26 2015

%Y Cf. A101686, A263688, A263687.

%Y Cf. A008865.

%K sign,easy

%O 0,3

%A _Vladimir Reshetnikov_, Oct 25 2015

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified March 28 09:04 EDT 2024. Contains 371240 sequences. (Running on oeis4.)