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!)
A350879 Triangle T(n,k), n >= 1, 1 <= k <= n, read by rows, where T(n,k) is the number of partitions of n such that k*(greatest part) = (number of parts). 9
1, 0, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 1, 2, 2, 1, 0, 0, 0, 0, 1, 4, 1, 1, 1, 0, 0, 0, 0, 1, 4, 2, 1, 1, 0, 0, 0, 0, 0, 1, 6, 3, 2, 1, 1, 0, 0, 0, 0, 0, 1, 7, 4, 2, 1, 1, 0, 0, 0, 0, 0, 0, 1, 11, 5, 2, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 11, 7, 2, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,22
COMMENTS
T(n,k) is the number of partitions of n such that (greatest part) = k*(number of parts).
LINKS
Andrew Howroyd, Table of n, a(n) for n = 1..1275 (rows 1..50).
FORMULA
G.f. of column k: Sum_{i>=1} x^((k+1)*i-1) * Product_{j=1..i-1} (1-x^(k*i+j-1))/(1-x^j).
EXAMPLE
Triangle begins:
1;
0, 1;
1, 0, 1;
1, 0, 0, 1;
1, 1, 0, 0, 1;
1, 1, 0, 0, 0, 1;
3, 1, 1, 0, 0, 0, 1;
2, 2, 1, 0, 0, 0, 0, 1;
4, 1, 1, 1, 0, 0, 0, 0, 1;
4, 2, 1, 1, 0, 0, 0, 0, 0, 1;
6, 3, 2, 1, 1, 0, 0, 0, 0, 0, 1;
PROG
(PARI) T(n, k) = polcoef(sum(i=1, (n+1)\(k+1), x^((k+1)*i-1)*prod(j=1, i-1, (1-x^(k*i+j-1))/(1-x^j+x*O(x^n)))), n);
(Ruby)
def partition(n, min, max)
return [[]] if n == 0
[max, n].min.downto(min).flat_map{|i| partition(n - i, min, i).map{|rest| [i, *rest]}}
end
def A(n)
a = Array.new(n, 0)
partition(n, 1, n).each{|ary|
(1..n).each{|i|
a[i - 1] += 1 if i * ary[0] == ary.size
}
}
a
end
def A350879(n)
(1..n).map{|i| A(i)}.flatten
end
p A350879(14)
CROSSREFS
Row sums give A168659.
Column k=1..5 give A047993, A237753, A237756, A348163, A348164.
Sequence in context: A338211 A115717 A339632 * A115718 A361510 A204181
KEYWORD
nonn,tabl
AUTHOR
Seiichi Manyama, Jan 21 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 May 12 18:22 EDT 2024. Contains 372494 sequences. (Running on oeis4.)