A261312 Numbers n such that the n-th Fibonacci number is not divisible by any prime Fibonacci number.
1, 2, 19, 31, 37, 38, 41, 53, 59, 61, 62, 67, 71, 73, 74, 79, 82, 89, 97, 101, 103, 106, 107, 109, 113, 118, 122, 127, 134, 139, 142, 146, 149, 151, 157, 158, 163, 167, 173, 178, 179, 181, 191, 193, 194, 197, 199, 202, 206, 211, 214, 218, 223, 226, 227, 229, 233, 239, 241, 251, 254, 257
Offset: 1
Keywords
Examples
The 19th Fibonacci is 4181 = 37*113, but neither 37 nor 113 is a Fibonacci number so 19 is in this sequence.
Links
- Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
Programs
-
PARI
is(n)=if(gcd(1155,n)>1||n%4==0, return(0)); my(f=factor(n)[,1]); for(i=1,#f, if(ispseudoprime(fibonacci(f[i])), return(0))); 1
Comments