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!)
A175430 a(n) = (n-1)! * (n+1)!. 5
2, 6, 48, 720, 17280, 604800, 29030400, 1828915200, 146313216000, 14485008384000, 1738201006080000, 248562743869440000, 41758540970065920000, 8142915489162854400000, 1824013069572479385600000, 465123332740982243328000000, 133955519829402886078464000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Also the number of automorphisms in the (n+1)-alternating group graph for n > 1. - Eric W. Weisstein, Jul 30 2018
LINKS
Eric Weisstein's World of Mathematics, Alternating Group Graph.
Eric Weisstein's World of Mathematics, Graph Automorphism.
FORMULA
a(n) = (Product_{k=1..n} k*A020725(k)) / n;
a(n) = (Product_{k=1..n} k*(k+1)) / n.
a(n) = (-1) * A129464(n) = A179442(n) * n. [Jaroslav Krizek, Jul 22 2010]
a(n) = 2*A010791(n-1). - Michel Marcus, Feb 03 2016
Sum_{n>=1} 1/a(n) = A229020 = BesselI(2,2). - Amiram Eldar, Oct 07 2020
EXAMPLE
a(5) = (5-1)! * (5+1)! = 4! * 6! = 24 * 720 = 17280.
a(5) = ((1*2) * (2*3) * (3*4) * (4*5) * (5*6)) / 5 = 17280.
MATHEMATICA
#[[1]] #[[3]] & /@ Partition[Range[0, 20]!, 3, 1] (* Harvey P. Dale, Jun 20 2017 *)
Table[(n - 1)! (n + 1)!, {n, 20}] (* or *) Table[Gamma[n] Gamma[n + 2], {n, 20}] (* Eric W. Weisstein, Jul 30 2018 *)
PROG
(PARI) a(n) = (n-1)! * (n+1)!; \\ Michel Marcus, Feb 03 2016
CROSSREFS
Sequence in context: A052717 A365287 A129464 * A003053 A113296 A275462
KEYWORD
nonn,easy
AUTHOR
Jaroslav Krizek, May 10 2010
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 16 18:12 EDT 2024. Contains 371750 sequences. (Running on oeis4.)