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.
%I A225583 #27 Dec 20 2024 17:44:24 %S A225583 19,41,173,349,701,11261,45053,180221,184549373,738197501,5905580029, %T A225583 188978561021,6192449487634429,49539595901075453,99079191802150909, %U A225583 25364273101350633469,811656739243220271101,3486039150627630854115933814781 %N A225583 Primes in the chain of repeated application of x->2*x+3, starting at x=19. %C A225583 Primes in A156198. %H A225583 Vincenzo Librandi, <a href="/A225583/b225583.txt">Table of n, a(n) for n = 1..37</a> %t A225583 Select[NestList[2 # + 3 &, 19, 30], PrimeQ] (* or *) Select[Table[11 2^n - 3, {n, 0, 150}], PrimeQ] %o A225583 (Magma) x:=19; a:=[n eq 1 select x else 2*Self(n-1)+3: n in [1..200]]; [a[i]: i in [1..#a] | IsPrime(a[i])]; %o A225583 (Magma) [a: n in [0..150] | IsPrime(a) where a is 11*2^n-3]; %Y A225583 Primes of the form k*2^m-3: A050415 (k=1), A173769 (k=5), A225582 (k=7), this sequence (k=11), A225584 (k=13); A172156 (k=100), A163589 (k=715). %Y A225583 Numbers of the form 11*2^m-3: A156198. %K A225583 nonn %O A225583 1,1 %A A225583 _Vincenzo Librandi_, May 14 2013