A222728 Palindromic composite numbers starting with a digit 7.
77, 707, 717, 737, 747, 767, 777, 7007, 7117, 7227, 7337, 7447, 7557, 7667, 7777, 7887, 7997, 70007, 70107, 70307, 70407, 70707, 70807, 70907, 71017, 71117, 71217, 71417, 71517, 71617, 71717, 71817, 72027, 72127, 72327, 72427, 72527, 72627, 72827, 72927, 73137
Offset: 1
Links
- Jaroslav Krizek, Table of n, a(n) for n = 1..1038
Programs
-
Mathematica
Table[Select[Range[7*10^d,8*10^d-1],CompositeQ[#]&&PalindromeQ[#]&],{d,4}]//Flatten (* Harvey P. Dale, Nov 07 2021 *)
Comments