OFFSET
1,1
COMMENTS
Following the definition of multiplicative pointer primes (A089823), I call a prime p a two-sided multiplicative pointer prime if previous_prime(p)=p-P and next_prime(p)=p+P where P is the product of the digits of p.
LINKS
Giovanni Resta, Table of n, a(n) for n = 1..59 (terms < 10^19)
Carlos Rivera and Joseph L. Pe, Pointer primes.
EXAMPLE
11112119111 is in the sequence because previous_prime(11112119111)
= 11112119111 - 1*1*1*1*2*1*1*9*1*1*1 and next_prime(11112119111)
= 11112119111 + 1*1*1*1*2*1*1*9*1*1*1.
MATHEMATICA
Do[p=Prime[m]; P=Apply[Times, IntegerDigits[p]]; If[Prime[m-1]== p-P&&Prime[m+1]==p+P, Print[p]], {m, 2, 140000000}]
CROSSREFS
KEYWORD
hard,base,nonn
AUTHOR
Farideh Firoozbakht, Feb 02 2007
EXTENSIONS
a(9)-a(20) from Donovan Johnson, Oct 21 2013
STATUS
approved