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!)
A309915 Total number of divisors d of m (counted with multiplicity), such that the prime signature of d is a partition of n and m runs through the set of least numbers whose prime signature is a partition of 2n. 2
1, 3, 16, 79, 371, 1683, 7413, 31769, 133692, 553848, 2265776, 9181670, 36928673, 147650125, 587734595, 2331625130, 9226486717, 36443758767, 143763811785, 566624864014, 2232055573265, 8789903797692, 34610963678036, 136287108614677, 536724439657635 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = A079025(2n,n).
EXAMPLE
a(2) = 16: The partitions of 2*2 are (4), (31), (22), (211), (1111). Least numbers with these prime signatures are 16, 24, 36, 60, 210. Their divisors with prime signatures (2) or (11) are {4}, {4,6}, {4,6,9}, {4,6,10,15}, {6,10,14,15,21,35}. The total number is 1 + 2 + 3 + 4 + 6.
MAPLE
b:= proc(n, i) option remember; expand(`if`(n=0 or i=1, (x+1)^n,
b(n, i-1) +factor((x^(i+1)-1)/(x-1))*b(n-i, min(n-i, i))))
end:
a:= n-> coeff(b(2*n$2), x, n):
seq(a(n), n=0..25);
MATHEMATICA
b[n_, i_] := b[n, i] = Expand[If[n == 0 || i == 1, (x + 1)^n, b[n, i - 1] + Factor[(x^(i + 1) - 1)/(x - 1)] b[n - i, Min[n - i, i]]]];
a[n_] := Coefficient[b[2n, 2n], x, n];
a /@ Range[0, 25] (* Jean-François Alcover, Dec 12 2020, after Alois P. Heinz *)
CROSSREFS
Sequence in context: A053572 A329806 A371350 * A343117 A055842 A037773
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Aug 22 2019
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 March 28 11:59 EDT 2024. Contains 371254 sequences. (Running on oeis4.)