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.

A133320 Numbers k such that both A124296(k) = 5*F(k)^2 - 5*F(k) + 1 and A124297(k) = 5*F(k)^2 + 5*F(k) + 1 are prime, where F(k) = Fibonacci(k).

This page as a plain text file.
%I A133320 #5 Jun 08 2021 02:29:16
%S A133320 3,4,5,10,40
%N A133320 Numbers k such that both A124296(k) = 5*F(k)^2 - 5*F(k) + 1 and A124297(k) = 5*F(k)^2 + 5*F(k) + 1 are prime, where F(k) = Fibonacci(k).
%t A133320 Do[ F=Fibonacci[n]; f=5*F^2-5*F+1; g=5*F^2+5*F+1; If[ PrimeQ[f], If[ PrimeQ[g], Print[ {n,f,g} ] ] ], {n,1,1000} ]
%Y A133320 Cf. A124297 (5*F(n)^2 + 5*F(n) + 1, where F(n) = Fibonacci(n)).
%Y A133320 Cf. A124296 (5*F(n)^2 - 5*F(n) + 1, where F(n) = Fibonacci(n)).
%Y A133320 Cf. A000032, A000045, A121171, A001946.
%K A133320 more,nonn
%O A133320 1,1
%A A133320 _Alexander Adamchuk_, Oct 18 2007