A280149 Numbers k such that 3^k - 2^k is not squarefree.
10, 11, 20, 22, 30, 33, 40, 42, 44, 50, 52, 55, 57, 60, 66, 70, 77, 80, 84, 88, 90, 99, 100, 104, 110, 114, 120, 121, 126, 130, 132, 140, 143, 150, 154, 156, 160, 165, 168, 170, 171, 176, 180, 187, 190, 198, 200, 203, 208, 209, 210, 220, 228, 230, 231, 240, 242, 250, 252, 253, 260, 264, 270, 272, 275, 280, 285
Offset: 1
Keywords
Examples
10 is in this sequence because 3^10 - 2^10 = 58025 = 5^2*11*211.
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)
Programs
-
Magma
[n: n in [1..156] | not IsSquarefree(3^n-2^n)];
-
Mathematica
Select[Range@ 120, ! SquareFreeQ[3^# - 2^#] &] (* Michael De Vlieger, Dec 27 2016 *)
-
PARI
is(n)=issquarefree(3^n-2^n)==0 \\ Charles R Greathouse IV, Dec 27 2016
Extensions
More terms from Charles R Greathouse IV, Dec 27 2016
Comments