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.

A244086 Primes p such that p remains prime through 7 iterations of function f(x) = 2*x + 3.

This page as a plain text file.
%I A244086 #22 Sep 08 2022 08:46:08
%S A244086 477727,507757,30596497,33145687,36180527,61192997,141339217,
%T A244086 148590307,193394347,297180617,374066267,395534747,398001547,
%U A244086 419795137,488716897
%N A244086 Primes p such that p remains prime through 7 iterations of function f(x) = 2*x + 3.
%t A244086 Select[Prime[Range[600000]], And@@PrimeQ[NestList[2 # + 3 &, #, 7]] &]
%o A244086 (Magma) [p: p in PrimesUpTo(600000000) | forall{i: i in [1..7] | IsPrime(2^i*p+3*(2^i-1))}];
%Y A244086 Cf. similar sequences with k iterations: A067076 (k=1), A023242 (k=2), A023273 (k=3), A023303 (k=4), A023331 (k=5), A175160 (k=6), this sequence (k=7).
%K A244086 nonn,easy
%O A244086 1,1
%A A244086 _Vincenzo Librandi_, Jun 24 2014
%E A244086 Inappropriate MAGMA code simplified and other terms added from _Bruno Berselli_, Jun 24 2014