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.

A155012 Fibonacci prime numbers f, 3*f+2 are also primes.

Original entry on oeis.org

3, 5, 13, 89, 233, 1597, 514229, 99194853094755497, 19134702400093278081449423917
Offset: 1

Views

Author

Keywords

Comments

3*3+2=11, 3*5+2=17, 3*13+2=41, ...

Crossrefs

Programs

  • Mathematica
    a={};Do[f=Fibonacci[n];If[PrimeQ[f],If[PrimeQ[3*f+2],AppendTo[a,f]]],{n,4*6!}];a
  • Python
    from gmpy2 import is_prime
    A155012_list = []
    a, b, a2, b2 = 0, 1, 2, 5
    for _ in range(10**3):
        if is_prime(b) and is_prime(b2):
            A155012_list.append(b)
        a, b, a2, b2 = b, a+b, b2, a2+b2-2 # Chai Wah Wu, Nov 04 2015