|
| |
|
|
A089699
|
|
Numbers n with property that n + 1 as well as the (product of digits of n) + 1 are primes.
|
|
2
| |
|
|
1, 2, 4, 6, 12, 16, 22, 28, 36, 52, 58, 66, 82, 112, 126, 136, 156, 162, 166, 192, 198, 232, 256, 268, 292, 312, 316, 346, 348, 352, 366, 372, 388, 396, 438, 486, 556, 562, 568, 576, 586, 612, 616, 652, 658, 682, 732, 756, 768, 786, 796, 826, 838, 856, 862
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,2
|
|
|
MAPLE
| for n from 1 to 150 do p:=ithprime(n): m:=mul(j, j=convert(p-1, base, 10)): if isprime(m+1) then printf("%d, ", p-1) fi od: (C. Ronaldo)
|
|
|
CROSSREFS
| Cf. A089700, A089701.
Sequence in context: A188047 A032465 A089395 * A089696 A171609 A099316
Adjacent sequences: A089696 A089697 A089698 * A089700 A089701 A089702
|
|
|
KEYWORD
| base,nonn
|
|
|
AUTHOR
| Amarnath Murthy (amarnath_murthy(AT)yahoo.com), Nov 10 2003
|
|
|
EXTENSIONS
| Corrected and extended by C. Ronaldo (aga_new_ac(AT)hotmail.com), Dec 25 2004
|
| |
|
|