A289259 Numbers k such that k^2 divides 2^k + 3^k.
1, 5, 55, 1971145, 3061355, 109715901845, 340799222665
Offset: 1
Examples
2^5 + 3^5 = 275 is divisible by 5^2, so 5 is in the sequence.
Links
- Robert Israel and Ray Chandler, Known Terms
- A. Velampalli et al., Mathematics StackExchange, Can you prove or disprove that there exist infinitely many integers n such that n^2 divides 2^n+3^n?
Programs
-
Maple
select(t -> 2&^t + 3&^t mod t^2 = 0, [$1..10^6]);
-
PARI
is(n) = Mod(2, n^2)^n==-3^n \\ Felix Fröhlich, Jun 29 2017
-
PARI
is(n) = Mod(2,n^2)^n+Mod(3,n^2)^n==0 \\ Charles R Greathouse IV, Jun 29 2017
Extensions
a(6)-a(7) confirmed as next terms by Ray Chandler, Jul 02 2017
Known terms updated and moved to a-file by Ray Chandler, Jul 03 2017
Comments