OFFSET
1,1
COMMENTS
With duplicates removed, seems to be a subsequence of A105399 and A105792. - M. F. Hasler, Jun 14 2007
REFERENCES
P. Ribenboim, The Little Book of Bigger Primes, Springer-Verlag NY 2004.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
FORMULA
MATHEMATICA
<< NumberTheory`NumberTheoryFunctions` a = {}; Do[AppendTo[a, PreviousPrime[Sqrt[(Prime[x])*(Prime[x + 2])]]], {x, 1, 100}]; a
PROG
(PARI) A126990(n)={ n=sqrtint(prime(n)*prime(n+2)); if( 0==n%2, n--); while(!isprime(n), n-=2); n } /* then vector(50, n, A126990(n)) displays a list of values, M. F. Hasler, Jun 14 2007 */
(PARI) a(n)= precprime(sqrtint(prime(n)*prime(n+2))); \\ Michel Marcus, Nov 07 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
Artur Jasinski, Jan 01 2007
EXTENSIONS
Edited by M. F. Hasler, Jun 14 2007
Definition changed so that offset is now 1 by Michel Marcus, Nov 07 2013
STATUS
approved