A383428 Primitive terms in A066192: number k such that k is a term of A066192 and k/2 is not.
4, 12, 56, 120, 528, 672, 992, 1456, 2160, 2208, 6720, 9024, 9120, 11904, 13104, 16256, 17472, 24800, 29568, 55104, 55552, 73440, 90816, 95040, 119040, 120960, 121024, 123648, 131040, 146688, 151680, 174720, 195072, 223104, 297600, 397440, 399616, 445536, 505344
Offset: 1
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 1..755 (terms below 10^11)
- Index entries for sequences where any odd perfect numbers must occur.
Programs
-
Mathematica
q[n_] := Module[{s = DivisorSigma[1, n/2^IntegerExponent[n, 2]] - If[OddQ[n], n, 0]}, Divisible[n, s] && OddQ[n/s]]; Select[Range[550000], # == 4 || (CompositeQ[#] && q[#]) &]
-
PARI
isok(k) = if(k == 1 || isprime(k), 0, if(k == 4, 1, my(s = sigma(k >> valuation(k, 2)) - if(k%2, k)); !(k % s) && (k/s) % 2));
Comments