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!)
A192081 Wronskian of sin(k*x) and cos(k*x), k=1,...,n. 0
1, 1, 18, 86400, 548674560000, 14450101093977292800000, 3837346984091658732083085312000000000, 21256593329287301582222798129123366786826240000000000000, 4543629380532096097361509541360459283717770305881596724510720000000000000000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
a(n) is the Wronskian of functions {cos(x), sin(x), cos(2x), sin(2x), ..., cos(n*x), sin(n*x)}.
LINKS
FORMULA
a(n) = (1! * 3! * ... * (2n-1)!)^2/n!.
EXAMPLE
a(3) = (1*6*120)^2/6 = 86400.
MAPLE
a:= n-> mul((2*i-1)!, i=1..n)^2/n!:
seq(a(n), n=0..8); # Alois P. Heinz, Aug 02 2023
MATHEMATICA
s = 1; Join[{s}, Table[s=s*((2*n-1)!)^2/n, {n, 2, 7}]] (* T. D. Noe, Oct 11 2011 *)
CROSSREFS
Sequence in context: A146548 A051591 A146203 * A290177 A259364 A013762
KEYWORD
nonn
AUTHOR
Mark Sapir, Oct 11 2011
EXTENSIONS
a(0)=1 prepended by Alois P. Heinz, Aug 02 2023
STATUS
approved

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 April 19 12:14 EDT 2024. Contains 371792 sequences. (Running on oeis4.)