login
Numbers n such that 2^n - 1 is not squarefree, but 2^d - 1 is squarefree for every proper divisor d of n.
13

%I #44 Jul 28 2019 02:22:56

%S 6,20,21,110,136,155,253,364,602,657,812,889,979,1081

%N Numbers n such that 2^n - 1 is not squarefree, but 2^d - 1 is squarefree for every proper divisor d of n.

%C Primitive elements of A049094: the elements of A049094 are precisely the positive multiples of members of this sequence.

%C If p^2 divides 2^n - 1 for some odd prime p, then by definition the multiplicative order of 2 mod p^2 divides n. The multiplicative order of 2 mod p^2 is p times the multiplicative order of 2 mod p unless p is a Wieferich prime, in which case the two orders are identical. Hence either p is a Wieferich prime or p*log_2(p+1) <= n. This should allow finding larger members of this sequence. - _Charles R Greathouse IV_, Feb 04 2014

%C If n is in the sequence and m>1 then m*n is not in the sequence. Because n is a proper divisor of m*n and 2^n-1 is not squarefree. - _Farideh Firoozbakht_, Feb 11 2014

%C a(15) >= 1207. - _Max Alekseyev_, Sep 28 2015

%C From _Daniel Suteu_, Jul 03 2019: (Start)

%C The following numbers are also in the sequence: {1755, 2265, 2485, 2756, 3081, 3164, 4112, 6757, 8251, 13861, 18533}.

%C Probably, the following numbers are also terms: {3422, 5253, 6806, 8164, 9316, 11342, 12550, 15025, 15026, 17030, 17404, 17468, 18145, 19670, 19701, 22052}. (End)

%t Select[Range@ 160, And[AllTrue[2^#2 - 1, SquareFreeQ], ! SquareFreeQ[2^First@ #1 - 1]] & @@ TakeDrop[Divisors@ #, -1] &] (* _Michael De Vlieger_, Jul 07 2019 *)

%o (PARI) default(factor_add_primes, 1);

%o isA049094(n)=my(f=factor(n>>valuation(n, 2))[, 1], N, o); for(i=1, #f, if(n%(f[i]-1) == 0, return(1))); N=2^n-1; fordiv(n, d, f=factor(2^d-1)[, 1]; for(i=1, #f, if(d==n, return(!issquarefree(N))); o=valuation(N, f[i]); if(o>1, return(1)); N/=f[i]^o))

%o is(n)=fordiv(n,d,if(isA049094(d),return(d==n))); 0

%o (PARI) \\ Simpler but slow

%o is(n)=fordiv(n,d,if(!issquarefree(2^d-1),return(d==n))); 0

%Y Cf. A049094, A005420, A065069, A282631, A282632.

%K nonn,hard,more

%O 1,1

%A _Charles R Greathouse IV_, Feb 02 2014

%E a(14) from _Charles R Greathouse IV_, Sep 21 2015, following Womack's factorization of 2^991-1.