OFFSET
1,1
COMMENTS
Primitive members (not multiples of earlier terms) are 10, 11, 42, 52, 57, 203, 272, 497, .... - Juri-Stepan Gerasimov and Charles R Greathouse IV, Dec 27 2016
From Robert Israel, Dec 27 2016: (Start)
Numbers divisible by the order of 3/2 mod p^2 for some prime p > 3.
Includes numbers divisible by p^2-p for some prime p > 3.
If k is a member, then so are all multiples of k. (End)
LINKS
Charles R Greathouse IV and Amiram Eldar, Table of n, a(n) for n = 1..134 (terms 1..127 from Charles R Greathouse IV)
EXAMPLE
10 is in this sequence because 3^10 - 2^10 = 58025 = 5^2*11*211.
MATHEMATICA
Select[Range@ 120, ! SquareFreeQ[3^# - 2^#] &] (* Michael De Vlieger, Dec 27 2016 *)
PROG
(Magma) [n: n in [1..156] | not IsSquarefree(3^n-2^n)];
(PARI) is(n)=issquarefree(3^n-2^n)==0 \\ Charles R Greathouse IV, Dec 27 2016
CROSSREFS
KEYWORD
nonn
AUTHOR
Juri-Stepan Gerasimov, Dec 27 2016
EXTENSIONS
More terms from Charles R Greathouse IV, Dec 27 2016
STATUS
approved