[go: up one dir, main page]

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!)
A360330 a(n) is the number of divisors of n that have only prime factors that are not prime-indexed primes. 3
1, 2, 1, 3, 1, 2, 2, 4, 1, 2, 1, 3, 2, 4, 1, 5, 1, 2, 2, 3, 2, 2, 2, 4, 1, 4, 1, 6, 2, 2, 1, 6, 1, 2, 2, 3, 2, 4, 2, 4, 1, 4, 2, 3, 1, 4, 2, 5, 3, 2, 1, 6, 2, 2, 1, 8, 2, 4, 1, 3, 2, 2, 2, 7, 2, 2, 1, 3, 2, 4, 2, 4, 2, 4, 1, 6, 2, 4, 2, 5, 1, 2, 1, 6, 1, 4, 2 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Equivalently, a(n) is the number of divisors of the largest divisor of n that has only prime factors that are not prime-indexed primes.
LINKS
FORMULA
a(n) = 1 if and only if n is in A076610.
a(n) = A000005(n) if and only if n is in A320628.
a(n) = A000005(A360329(n)).
Multiplicative with a(p^e) = 1 if p is a prime-indexed prime (A006450), and e+1 otherwise (A007821).
MAPLE
a:= n-> mul(`if`(isprime(numtheory[pi](i[1])), 1, i[2]+1), i=ifactors(n)[2]):
seq(a(n), n=1..87); # Alois P. Heinz, Feb 03 2023
MATHEMATICA
f[p_, e_] := If[PrimeQ[PrimePi[p]], 1, e+1]; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100]
PROG
(PARI) a(n) = {my(f = factor(n), p = f[, 1], e = f[, 2]); prod(i = 1, #p, if(isprime(primepi(p[i])), 1, e[i]+1)); }
CROSSREFS
Sequence in context: A035942 A329622 A036989 * A035197 A227872 A323165
KEYWORD
nonn,mult
AUTHOR
Amiram Eldar, Feb 03 2023
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 August 29 23:09 EDT 2024. Contains 375519 sequences. (Running on oeis4.)