A330136 Numbers m such that 1 < gcd(m, 6) < m and m does not divide 6^e for e >= 0.
10, 14, 15, 20, 21, 22, 26, 28, 30, 33, 34, 38, 39, 40, 42, 44, 45, 46, 50, 51, 52, 56, 57, 58, 60, 62, 63, 66, 68, 69, 70, 74, 75, 76, 78, 80, 82, 84, 86, 87, 88, 90, 92, 93, 94, 98, 99, 100, 102, 104, 105, 106, 110, 111, 112, 114, 116, 117, 118, 120, 122, 123
Offset: 1
Examples
All m < 10 are not in the sequence since they either divide 6^e with integer e >= 0 or are coprime to 6. 10 is in the sequence since gcd(6, 10) = 2 and 10 does not divide 6^e with integer e >= 0. 11 is not in the sequence since 11 is coprime to 6. 12 is not in the sequence since 12 | 6^2.
Links
- Michael De Vlieger, Table of n, a(n) for n = 1..10000
Crossrefs
Programs
-
Mathematica
With[{nn = 123, k = 6}, Select[Range@ nn, And[1 < GCD[#, k] < #, PowerMod[k, Floor@ Log2@ nn, #] != 0] &]]
Comments