A277340 Positive integers n such that n | (3^n + 11).
1, 2, 4, 7, 10, 92, 1099, 29530, 281473, 657892, 3313964, 9816013, 18669155396, 94849225930, 358676424226, 957439868543, 1586504109310, 41431374800470, 241469610359708, 256165266592379
Offset: 1
Keywords
Examples
3^10 + 11 = 59060 = 10 * 5906, so 10 is a term.
Crossrefs
Programs
-
PARI
is(n)=Mod(3,n)^n==-11; \\ Joerg Arndt, Oct 10 2016
-
Python
A277340_list = [1,2,4,7,10]+[n for n in range(11,10**6) if pow(3,n,n)==n-11] # Chai Wah Wu, Oct 11 2016
Extensions
a(13)-a(14) from Chai Wah Wu, Oct 12 2016
a(15)-a(20) from Max Alekseyev, Oct 14 2016
Comments