|
| |
|
|
A046328
|
|
Palindromes with exactly 2 prime factors (counted with multiplicity).
|
|
12
| |
|
|
4, 6, 9, 22, 33, 55, 77, 111, 121, 141, 161, 202, 262, 303, 323, 393, 454, 505, 515, 535, 545, 565, 626, 707, 717, 737, 767, 818, 838, 878, 898, 939, 949, 959, 979, 989, 1111, 1441, 1661, 1991, 3113, 3223, 3443, 3883, 7117, 7447, 7997, 9119, 9229, 9449, 10001
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,1
|
|
|
LINKS
| Zak Seidov, Table of n, a(n) for n = 1..2000
|
|
|
EXAMPLE
| E.g. 111 is a palindrome and 111 = 3*37. 3 and 37 are primes.
|
|
|
MATHEMATICA
| fQ[n_] := Block[{id = IntegerDigits[n]}, Plus @@ Last /@ FactorInteger[n] == 2 && id == Reverse[id]]; Select[ Range[ 10000], fQ[ # ] &] (from Robert G. Wilson v (rgwv(AT)rgwv.com), Jun 06 2005)
|
|
|
CROSSREFS
| Cf. A001358, A046315, A046408, A108505.
Sequence in context: A046338 A118690 A084994 * A196104 A046376 A085721
Adjacent sequences: A046325 A046326 A046327 * A046329 A046330 A046331
|
|
|
KEYWORD
| nonn,base
|
|
|
AUTHOR
| Patrick De Geest (pdg(AT)worldofnumbers.com), Jun 15 1998.
|
| |
|
|