login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A372781
Odd numbers k such that A001221(k) < A001221(A003958(k)).
0
7, 11, 13, 19, 23, 29, 31, 37, 41, 43, 47, 49, 53, 59, 61, 67, 71, 73, 77, 79, 83, 89, 93, 97, 101, 103, 107, 109, 113, 121, 127, 129, 131, 137, 139, 143, 149, 151, 155, 157, 161, 163, 167, 169, 173, 179, 181, 183, 191, 193, 197, 199, 201, 203, 209, 211, 213, 215, 217, 223
OFFSET
1,1
EXAMPLE
31 is in the sequence because 31 = 31^1, so omega(31) = 1, but (31 - 1)^1 = 30^1 = 2^1 * 3^1 * 5^1, so omega(30) = 3, and 1 < 3.
MAPLE
q:= n-> (f-> n::odd and f(n)<f(mul((i[1]-1)^i[2],
i=ifactors(n)[2])))(k-> nops(ifactors(k)[2])):
select(q, [$1..333])[]; # Alois P. Heinz, Jul 04 2024
MATHEMATICA
f[p_, e_] := (p - 1)^e; s[n_] := Times @@ f @@@ FactorInteger[n]; Select[Range[3, 1000, 2], PrimeNu[#] < PrimeNu[s[#]] &] (* Amiram Eldar, Jul 04 2024 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Mike Jones, Jul 04 2024
STATUS
approved