The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A348704 a(n) = Sum_{x_1+x_2+ ... +x_n=n, 0 <= x_1<= x_2 <= ... <= x_n <= n} ((n-1)*n)!/((n-x_1)! * (n-x_2)! * ... * (n-x_n)!). 3
1, 1, 3, 170, 1027950, 1079901406584, 448687115051986530720, 89290138377185872821028908288000, 14759276773881730859717740767606565269685350000, 2387650794422480788739162652666454048976136433287918499830000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
PROG
(Ruby)
def f(n)
return 1 if n < 2
(1..n).inject(:*)
end
def A(k, n)
sum = 0
m = f((k - 1) * n)
(0..n).to_a.repeated_combination(k){|i|
if (0..k - 1).inject(0){|s, j| s + i[j]} == n
sum += m / (0..k - 1).inject(1){|s, j| s * f(n - i[j])}
end
}
sum
end
def A348704(n)
(0..n).map{|i| A(i, i)}
end
p A348704(7)
CROSSREFS
Sequence in context: A292920 A203482 A116506 * A032484 A119117 A136473
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Oct 30 2021
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 May 16 17:27 EDT 2024. Contains 372554 sequences. (Running on oeis4.)