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!)
A328745 Dirichlet g.f.: Product_{p prime} 1 / (1 - p^(-s))^p. 1
1, 2, 3, 3, 5, 6, 7, 4, 6, 10, 11, 9, 13, 14, 15, 5, 17, 12, 19, 15, 21, 22, 23, 12, 15, 26, 10, 21, 29, 30, 31, 6, 33, 34, 35, 18, 37, 38, 39, 20, 41, 42, 43, 33, 30, 46, 47, 15, 28, 30, 51, 39, 53, 20, 55, 28, 57, 58, 59, 45, 61, 62, 42, 7, 65, 66, 67, 51, 69, 70, 71, 24, 73, 74, 45 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Number of ways to factor n into 2 kinds of 2, 3 kinds of 3, 5 kinds of 5, ... , p kinds of p.
LINKS
FORMULA
If n = Product (p_j^k_j) then a(n) = Product (binomial(p_j + k_j - 1, k_j)).
MAPLE
a:= n-> mul(binomial(i[1]+i[2]-1, i[2]), i=ifactors(n)[2]):
seq(a(n), n=1..100); # Alois P. Heinz, Oct 26 2019
MATHEMATICA
a[n_] := Times @@ (Binomial[#[[1]] + #[[2]] - 1, #[[2]]] & /@ FactorInteger[n]); Table[a[n], {n, 1, 75}]
PROG
(PARI) for(n=1, 100, print1(direuler(p=2, n, 1/(1 - X)^p)[n], ", ")) \\ Vaclav Kotesovec, Aug 22 2021
CROSSREFS
Sequence in context: A369450 A212010 A366418 * A357134 A003967 A349390
KEYWORD
nonn,mult
AUTHOR
Ilya Gutkovskiy, Oct 26 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 April 16 13:41 EDT 2024. Contains 371713 sequences. (Running on oeis4.)