A084987 Duplicate of A083185.
11, 101, 181, 191, 919, 10601, 11411, 16061, 16661, 18181, 18481, 19891, 19991
Offset: 1
This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
11 = prime(5) = palprime(5), 1st term of sequence. 101 = prime(26) = palprime(6), 2nd term of sequence. Next term using only 0 and 1 is 100111001 = prime(5767473) = palprime(785).
Select[FromDigits/@Tuples[{0,1,4,9},7],PalindromeQ[#]&&PrimeQ[#]&] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Mar 06 2019 *)
Select[Flatten[Table[FromDigits/@Tuples[{4,6,8,9},n],{n,9}]],PalindromeQ[ #] && PrimeQ[#]&] (* Harvey P. Dale, Dec 20 2018 *)
Table[Select[FromDigits/@Tuples[{1,3,5,7,9},n],PrimeQ[#]&& # == IntegerReverse[ #]&],{n,7}]//Flatten (* Harvey P. Dale, Sep 17 2016 *)
Comments