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!)
A324179 Number of distinct values A297167 obtains over divisors > 1 of n, minus number of prime factors of n counted with multiplicity: a(n) = A324190(n) - A001222(n). 5
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 2, 0 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,56
COMMENTS
a(n) is zero for all prime powers (A000961), but also for many other numbers.
LINKS
FORMULA
a(n) = A324190(n) - A001222(n).
a(n) <= A324192(n).
EXAMPLE
Divisors of 56 larger than 1 are [2, 4, 7, 8, 14, 28, 56]. When A297167 is applied to each, one obtains values: [0, 1, 3, 2, 3, 4, 5], of which 6 values are distinct (as one of them, 3, occurs twice). On the other hand, 56 = 2 * 2 * 2 * 7 has four prime factors in total, thus a(56) = 6 - 4 = 2.
PROG
(PARI)
A061395(n) = if(1==n, 0, primepi(vecmax(factor(n)[, 1])));
A297167(n) = if(1==n, 0, (A061395(n) + (bigomega(n)-omega(n)) - 1));
A324190(n) = #Set(apply(A297167, select(d -> d>1, divisors(n))));
A324179(n) = (A324190(n)-bigomega(n));
CROSSREFS
Sequence in context: A089807 A089810 A214411 * A216577 A096562 A096563
KEYWORD
nonn
AUTHOR
Antti Karttunen, Feb 19 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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)