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!)
A090444 Fifth column (m=4) of triangle A090441. 1
1, 24, 2880, 1036800, 870912000, 1463132160000, 4424511651840000, 22299538725273600000, 176612346704166912000000, 2098154678845502914560000000, 36004334288988830013849600000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
J. Agapito, On symmetric polynomials with only real zeros and nonnegative gamma-vectors, Linear Algebra and its Applications, Volume 451, 15 June 2014, Pages 260-289.
FORMULA
a(n) = (n+3)!*(n+2)!*(n+1)!*n!/12, n>=0. 12=A000178(3) (superfactorial).
PROG
(PARI) a(n) = (n+3)!*(n+2)!*(n+1)!*n!/12; \\ Michel Marcus, Feb 12 2019
(Python)
from math import factorial
def A090444(n): return factorial(n)**4*(n+3)*(n+2)**2*(n+1)**3//12 # Chai Wah Wu, Apr 22 2024
CROSSREFS
Cf. A090441.
Sequence in context: A266870 A277003 A060902 * A205795 A222852 A189246
KEYWORD
nonn,easy,changed
AUTHOR
Wolfdieter Lang, Dec 23 2003
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 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)