OFFSET
1,1
COMMENTS
LINKS
Michael De Vlieger, Table of n, a(n) for n = 1..10000
FORMULA
a(n) = 35n/11 + O(log^2 n). - Charles R Greathouse IV, Sep 07 2022
EXAMPLE
10 is in the sequence since gcd(10, 35) = 5 and 10 does not divide 35^e with integer e >= 0.
2 is not in the sequence since 2 is coprime to 35.
7 is not in the sequence since 7 | 35.
25 is not in the sequence since 25 | 35^2.
MATHEMATICA
With[{nn = 205, k = 35}, Select[Range@ nn, And[1 < GCD[#, k] < #, PowerMod[k, Floor@ Log2@ nn, #] != 0] &]]
PROG
(PARI) is(n)=gcd(n, 35)>1 && n/5^valuation(n, 5)/7^valuation(n, 7)>1 \\ Charles R Greathouse IV, Sep 07 2022
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Michael De Vlieger, Aug 22 2019
STATUS
approved
