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.

A335314 Full autoinsertable of reversed multidigit primes are such primes that remain prime after all the possible internal autoinsertions of the reversed prime, one at a time.

This page as a plain text file.
%I A335314 #27 Jun 02 2020 04:50:38
%S A335314 127,131,149,163,191,347,383,457,463,479,521,569,571,613,643,653,659,
%T A335314 739,757,797,941,40471,49991,79627,81869,83407,5916623
%N A335314 Full autoinsertable of reversed multidigit primes are such primes that remain prime after all the possible internal autoinsertions of the reversed prime, one at a time.
%C A335314 If the prime has K digits all the possible internal autoinsertions are K-1.
%C A335314 Supposed to have only a finite quantity of terms.
%C A335314 If it exists, the next term a(28) is > 2^32.
%e A335314 Example: 127 generates 2 primes 1'721'27 and 12'721'7
%e A335314 Example: 5916623 generates 6 primes: 5'3266195'916623, 59'3266195'16623, 591'3266195'6623, 5916'3266195'623, 59166'3266195'23, 591662'3266195'3
%o A335314 (PARI) forprime(p=11, 10^8, my(v=digits(p), d=#v, f=1); for(i=1, d-1, my(t=concat(concat(v[1..i], Vecrev(v)), v[i+1..d]), q=fromdigits(t)); if(!isprime(q), f=0; break)); if(f, print1(p, ", "))) \\ _Hugo Pfoertner_, Jun 01 2020
%Y A335314 Cf. A335271.
%K A335314 nonn,base,more
%O A335314 1,1
%A A335314 _Carlos Rivera_, Jun 01 2020