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)
Project Euler, Problem #225: Tribonacci non-divisors
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