OFFSET
1,1
COMMENTS
Since the even anti-tau numbers (A268066) are square numbers, all the terms are of the form 4*k^2 - 1, and there cannot be a run of more than 3 consecutive anti-tau numbers.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
3 is a term since 3, 4 and 5 are all anti-tau numbers: gcd(3, tau(3)) = gcd(3, 2) = 1, gcd(4, tau(4)) = gcd(4, 3) = 1 and gcd(5, tau(5)) = gcd(5, 2) = 1.
MATHEMATICA
antiTauQ[n_] := CoprimeQ[n, DivisorSigma[0, n]]; Select[4*Range[100]^2 - 1, AllTrue[# + {0, 1, 2}, antiTauQ] &]
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Feb 19 2021
STATUS
approved