A097491 Primes which are two greater than the terms of A079164.
5, 17, 21800053277, 72409291238312731227527, 86984485062381462583582279727, 21679097826151232817152558557032490897727272048343000297777, 107025222275017133994159705286756083545279583250537082122450588876727
Offset: 1
Keywords
Examples
a(3) = 21800053277 = A079164(17) + 2 = 3*5*5*7*11*13*17*19*29*31 + 2. - _Hartmut F. W. Hoft_, Apr 27 2021
Links
- Amiram Eldar, Table of n, a(n) for n = 1..9
Programs
-
Mathematica
step[{list_, q_}] := Module[{p=NextPrime[q]}, {Join[list, If[PrimeQ[p+2], {{p,p+2}}, {}]], p}] pairList[n_] := First[NestWhile[step, {{{3, 5}}, 3}, Length[First[step[#]]]<=n&]] a079164[n_] := Rest[FoldList[Times, 1, Take[Flatten[pairList[n]], n]]] a097491[n_] := Select[Map[#+2&, a079164[n]], PrimeQ] a097491[39] (* Hartmut F. W. Hoft, Apr 27 2021 *)
-
PARI
ft(n) = p=1;for(x=1,n,p*=twinl(x);if(isprime(p+2),print1(p+2", ")); p*=twinu(x);if(isprime(p+2),print1(p+2", "))) twinl(n) = { local(c,x); c=0; x=1; while(c
Extensions
Edited by Don Reble, Apr 16 2007
Name corrected by Hartmut F. W. Hoft, Apr 27 2021
Comments