OFFSET
1,2
COMMENTS
From Robert Israel, Feb 06 2018: (Start)
The only primes in the sequence are 2 and 3.
No terms are divisible by 4.
All terms divisible by 3 are odd.
(End)
This sequence is infinite because 3^j is a term. - Jinyuan Wang, Mar 02 2019
LINKS
Robert G. Wilson v, Table of n, a(n) for n = 1..224 (first 125 terms from Robert Israel)
MAPLE
select(n -> 12 &^ n + 11 &^ n + 1 mod n = 0, [$1..10^6]); # Robert Israel, Feb 06 2018
MATHEMATICA
Select[ Range[ 10^5 ], Mod[ PowerMod[ 12, #, # ] + PowerMod[ 11, #, # ] + 1, # ] == 0 & ]
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Sep 22 2000
STATUS
approved