A084123 Palindromic numbers which are equal to a number n multiplied by the n-th prime.
2, 6, 55, 444, 848, 122555221, 161131161, 5729689869275, 7587952597857, 35757255275753, 182196497222794691281
Offset: 1
Examples
The palindrome 161131161 is in the sequence since 39119 is the 4119th prime and 4199*39119 = 161131161.
Programs
-
Mathematica
palQ[n_]:=FromDigits[Reverse[IntegerDigits[n]]]==n; t={}; Do[If[palQ[x=n*Prime[n]],AppendTo[t,x]],{n,15*10^5}]; t (* Jayanta Basu, May 11 2013 *)
Comments