login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A215964
Prime tribonacci non-divisors.
2
2, 103, 163, 199, 397, 421, 757, 883, 991, 1021, 1087, 1123, 1237, 1543, 1567, 1609, 1753, 1873, 2539, 2731, 2797, 2803, 2953, 3259, 3391, 3433, 3499, 3613, 3631, 3733, 3853, 3877, 3943, 4093, 4591, 4621, 4723, 4789, 4933, 4951, 4987, 4999
OFFSET
1,1
COMMENTS
Prime numbers that do not divide any term of A000213.
LINKS
V. Raman and Charles R Greathouse IV, Table of n, a(n) for n = 1..1000 (first 107 terms from Raman)
PROG
(PARI) is(n)=my(a=1, b=1, c=1, t); for(i=1, n^2, t=(a+b+c)%n; if(t, a=b; b=c; c=t, return(0)); if(c==1&&b==1&&a==1, return(isprime(n)))) \\ Charles R Greathouse IV, Aug 29 2012
CROSSREFS
KEYWORD
nonn
AUTHOR
V. Raman, Aug 29 2012
STATUS
approved