A277348 Positive integers n such that n | (5^n + 6).
1, 11, 341, 581337017, 7202608727, 27146455379, 1358496201131, 9843739213499, 172392038905691
Offset: 1
Examples
5^11 + 6 = 48828131 = 11 * 4438921, so 11 is a term.
Crossrefs
Programs
-
PARI
isok(n) = Mod(5, n)^n == -6; \\ Michel Marcus, Oct 10 2016
Formula
A066603(a(n)) = a(n) - 6 for n > 1.
Extensions
a(5)-a(9) from Max Alekseyev, Oct 17 2016
Comments