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!)
A336415 Number of divisors of n! with equal prime multiplicities. 14
1, 1, 2, 4, 6, 10, 13, 21, 24, 28, 33, 49, 53, 85, 94, 100, 104, 168, 173, 301, 307, 317, 334, 590, 595, 603, 636, 642, 652, 1164, 1171, 2195, 2200, 2218, 2283, 2295, 2301, 4349, 4478, 4512, 4519, 8615, 8626, 16818, 16836, 16844, 17101, 33485, 33491, 33507, 33516, 33582 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
A number k has "equal prime multiplicities" (or is "uniform") iff its prime signature is constant, meaning that k is a power of a squarefree number.
LINKS
Jon Maiga, Computer-generated formulas for A336415, Sequence Machine.
FORMULA
a(n) = A327527(n!).
EXAMPLE
The a(n) uniform divisors of n for n = 1, 2, 6, 8, 30, 36 are the columns:
1 2 6 8 30 36
1 3 6 15 30
2 4 10 16
1 3 8 15
2 6 10
1 5 9
4 8
3 6
2 5
1 4
3
2
1
In 20!, the multiplicity of the third prime (5) is 4 but the multiplicity of the fourth prime (7) is 2. Hence there are 2^3 - 1 = 3 divisors with all exponents 3 (we subtract |{1}| = 1 from that count as 1 has no exponent 3). - David A. Corneth, Jul 27 2020
MATHEMATICA
Table[Length[Select[Divisors[n!], SameQ@@Last/@FactorInteger[#]&]], {n, 0, 15}]
PROG
(PARI) a(n) = sumdiv(n!, d, my(ex=factor(d)[, 2]); (#ex==0) || (vecmin(ex) == vecmax(ex))); \\ Michel Marcus, Jul 24 2020
(PARI) a(n) = {if(n<2, return(1)); my(f = primes(primepi(n)), res = 1, t = #f); f = vector(#f, i, val(n, f[i])); for(i = 1, f[1], while(f[t] < i, t--; ); res+=(1<<t - 1) ); res }
val(n, p) = my(r=0); while(n, r+=n\=p); r \\ David A. Corneth, Jul 27 2020
CROSSREFS
The version for distinct prime multiplicities is A336414.
The version for nonprime perfect powers is A336416.
Uniform partitions are counted by A047966.
Uniform numbers are A072774, with nonprime terms A182853.
Numbers with distinct prime multiplicities are A130091.
Divisors with distinct prime multiplicities are counted by A181796.
Maximum divisor with distinct prime multiplicities is A327498.
Uniform divisors are counted by A327527.
Maximum uniform divisor is A336618.
1st differences are given by A048675.
Sequence in context: A007981 A258847 A238627 * A241821 A280862 A370654
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jul 22 2020
EXTENSIONS
Terms a(31) and onwards from David A. Corneth, Jul 27 2020
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 24 00:30 EDT 2024. Contains 371917 sequences. (Running on oeis4.)