|
| |
|
|
A100414
|
|
Numbers n such that n is R(n)-th composite number where R(n) is the digit reversal of n (A002808(A004086(n))=n).
|
|
1
| | |
|
|
|
OFFSET
| 1,1
|
|
|
COMMENTS
| There is no further term < 3*10^9.
a(11) > 3*10^12. [From Donovan Johnson (donovan.johnson(AT)yahoo.com), Jun 14 2009]
|
|
|
EXAMPLE
| 41630193 is in the sequence because 41630193 is 39103614-th composite number.
|
|
|
MATHEMATICA
| Do[s=FromDigits[Reverse[IntegerDigits[n]]]; If[s<n&&!PrimeQ[n] &&s==n-PrimePi[n]-1, Print[n]], {n, 2, 42000000}]
|
|
|
CROSSREFS
| Cf. A002808, A004086, A100412, A100413, A100415.
Sequence in context: A172724 A001167 A189648 * A189310 A068735 A172800
Adjacent sequences: A100411 A100412 A100413 * A100415 A100416 A100417
|
|
|
KEYWORD
| base,more,nonn
|
|
|
AUTHOR
| Farideh Firoozbakht (mymontain(AT)yahoo.com), Dec 10 2004
|
|
|
EXTENSIONS
| a(9)-a(10) from Donovan Johnson (donovan.johnson(AT)yahoo.com), Jun 14 2009
|
| |
|
|