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!)
A350267 a(n) = n*hypergeom([1, 1 - n, -n], [2], 1) if n >= 1, a(0) = 1. 2
1, 1, 4, 18, 100, 675, 5376, 49294, 510728, 5894109, 74915740, 1039180186, 15613569324, 252501251743, 4371586879128, 80652138666870, 1579212732426256, 32701859350855769, 713914404925713588, 16384896394304282722, 394340620941231415540, 9929838681717090607611 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = n*A247499(n - 1) for n >= 1.
a(n) = Sum_{k=1..n} binomial(n, k)^2 * k! / (n - k + 1), for n >= 1.
MAPLE
A350267 := n -> ifelse(n = 0, 1, n)*hypergeom([1, 1 - n, -n], [2], 1):
seq(simplify(A350267(n)), n = 0..21);
MATHEMATICA
a[0] = 1; a[n_] := Sum[Binomial[n, k]^2 * k!/(n - k + 1), {k, 1, n}]; Array[a, 20, 0] (* Amiram Eldar, Jan 09 2022 *)
PROG
(PARI) a(n) = if (n == 0, 1, sum(k=1, n, binomial(n, k)^2 * k! / (n - k + 1))); \\ Michel Marcus, Jan 09 2022 [a(0) corrected by Georg Fischer, Jun 22 2022]
CROSSREFS
Row sums of A350266.
Cf. A247499.
Sequence in context: A215522 A201826 A327833 * A064852 A229286 A191365
KEYWORD
nonn
AUTHOR
Peter Luschny, Jan 09 2022
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 13:38 EDT 2024. Contains 371970 sequences. (Running on oeis4.)