Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.
%I #9 Mar 18 2020 07:30:02
%S 6,9,11,21,29,33,36,49,64,66,68,80,110,113,144,240,266,270,309,348,
%T 365,366,394,426,438,459,471,474,479,485,501,548,553,570,593,660,684,
%U 699,704,725,729,743,783,798,801,809,815,820,824,833,841,891,900,931,968
%N Numbers k for which k^14+k^13-1 is prime.
%H Amiram Eldar, <a href="/A125971/b125971.txt">Table of n, a(n) for n = 1..10000</a>
%t Do[If[PrimeQ[x^14 + x^13 - 1], Print[x]], {x, 1, 600}]
%o (PARI) is(n)=isprime(n^14+n^13-1) \\ _Charles R Greathouse IV_, May 15 2013
%Y Cf. A000040, A045546, A125881-A125885, A125965-A125973.
%K nonn
%O 1,1
%A _Artur Jasinski_, Dec 14 2006
%E More terms from _Amiram Eldar_, Mar 18 2020