cp's OEIS Frontend

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.

A180421 Members p of A091366 such that digit-reverse(p) is also in A091366.

Original entry on oeis.org

11, 101, 113, 131, 151, 199, 311, 337, 353, 359, 373, 733, 757, 919, 953, 991, 1031, 1103, 1213, 1217, 1231, 1237, 1259, 1301, 1321, 1381, 1439, 1471, 1499, 1619, 1723, 1741, 1831, 1949, 3011, 3019, 3109, 3121, 3163, 3257, 3271, 3299, 3347, 3527, 3583, 3613, 3767
Offset: 1

Views

Author

Carmine Suriano, Sep 03 2010

Keywords

Examples

			a(10) = A091366(19) = 359 and reverse(359) = 953 = A091366(42) is again in A091366.
		

Crossrefs

Programs

  • Maple
    filter:= proc(n) local i,L,d,y;
      if not isprime(n) then return false fi;
      L:= convert(n,base,10);
      d:= nops(L);
      isprime(add(L[i]^3,i=1..d)) and isprime(add(L[-i]*10^(i-1),i=1..d))
    end proc:
    select(filter, [seq(i,i=3..10000,2)]); # Robert Israel, Apr 06 2021

Formula

Extensions

Keyword:base added and definition shortened by R. J. Mathar, Sep 23 2010