cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A117745 Prime Fibonacci numbers that are not Chen primes.

Original entry on oeis.org

1597, 28657, 433494437, 2971215073, 99194853094755497, 1066340417491710595814572169, 19134702400093278081449423917
Offset: 0

Views

Author

Jani Melik, Apr 28 2006

Keywords

Crossrefs

Programs

  • Maple
    ischenprime:=proc(n); if (isprime(n) = 'true') then if (isprime(n+2) = 'true' or numtheory[bigomega](n+2) = 2) then RETURN('true') else RETURN('false') fi fi end: ts_prime_fibonacci_notchen:=proc(n) local i, tren, ans; ans:= [ ]: for i from 0 to n do tren := combinat[fibonacci](i): if (isprime( tren ) = 'true' and ischenprime(tren) = 'false') then ans:=[op(ans), tren]: fi od; return ans end: ts_prime_fibonacci_notchen(300); # Jani Melik, May 05 2006