OFFSET
1,2
COMMENTS
This sequence was generated by adding 14 Fibonacci-like sequences. Looking at the format 90n+31 modulo 9 and modulo 10 we see that all entries of A142328 have digital root 4 and last digit 1. (Reverting the process is an application of the Chinese remainder theorem.)
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..10000
MATHEMATICA
Select[Range[0, 200], PrimeQ[90 # + 31] &] (* T. D. Noe, Dec 06 2011 *)
PROG
(Magma) [n: n in [0..200] | IsPrime(90*n+31)] // Vincenzo Librandi, Dec 11 2011
(PARI) is(n)=isprime(90*n+31) \\ Charles R Greathouse IV, Feb 20 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
J. W. Helkenberg, Dec 05 2011
STATUS
approved