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.

A201786 Primes of the form 5*k^2 - 4.

This page as a plain text file.
%I A201786 #27 Sep 08 2022 08:46:01
%S A201786 41,241,401,601,1801,3121,4201,4801,5441,6121,6841,9241,13001,15121,
%T A201786 17401,19841,21121,22441,23801,26641,29641,32801,45121,47041,51001,
%U A201786 57241,63841,75641,78121,91121,96601,99401,102241,108041,114001,117041
%N A201786 Primes of the form 5*k^2 - 4.
%C A201786 Also, primes of the form 20*k^2 + 20*k + 1. - _Jan Rider_, May 22 2018
%H A201786 Vincenzo Librandi, <a href="/A201786/b201786.txt">Table of n, a(n) for n = 1..5000</a>
%t A201786 Select[Table[5n^2-4,{n,1,1000}],PrimeQ]
%o A201786 (Magma) [a: n in [1..400] | IsPrime(a) where a is 5*n^2-4];
%o A201786 (PARI) lista(nn) = for (n=1, nn, if (isprime(p=5*n^2-4), print1(p, ", "));); \\ _Michel Marcus_, May 22 2018
%Y A201786 Cf. A090562, A195317.
%K A201786 nonn
%O A201786 1,1
%A A201786 _Vincenzo Librandi_, Dec 05 2011