A134334 Numbers which are not divisible by the number of their prime factors (counted with multiplicity).
8, 9, 15, 20, 21, 25, 28, 32, 33, 35, 39, 44, 48, 49, 50, 51, 52, 54, 55, 57, 64, 65, 68, 69, 70, 72, 76, 77, 81, 85, 87, 90, 91, 92, 93, 95, 98, 108, 110, 111, 112, 115, 116, 119, 121, 123, 124, 125, 126, 128, 129, 130, 133, 135, 141, 143, 145, 148, 150, 154, 155, 159
Offset: 1
Keywords
Examples
a(1) = 8, since 8 = 2*2*2 has 3 prime factors and 8 is not divisible by 3. a(3) = 15, since 15 = 3*5 has 2 prime factors and 15 is not divisible by 2.
Links
- Hieronymus Fischer, Table of n, a(n) for n = 1..10000
- Paul Erdős and Carl Pomerance, On a theorem of Besicovitch: values of arithmetic functions that divide their arguments, Indian J. Math., Vol. 32 (1990), pp. 279-287.
Crossrefs
Programs
-
Mathematica
Select[Range[2,200],Mod[#,PrimeOmega[#]]!=0&] (* Harvey P. Dale, May 13 2023 *)
-
PARI
isok(n) = (n % bigomega(n)) \\ Michel Marcus, Jul 15 2013
Comments