login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A323396 Irregular array read by rows, where T(n, k) is the k-th prime that is both left-truncatable and right-truncatable in base n. 3

%I #18 Feb 22 2019 11:27:00

%S 2,23,2,3,11,2,3,13,17,67,2,3,5,17,23,83,191,479,839,2,3,5,17,19,23,

%T 37,2,3,5,7,19,23,29,31,43,47,59,61,139,157,239,251,331,349,379,479,

%U 491,1867,2,3,5,7,23,29,47,173,2,3,5,7,23,37,53,73,313,317,373,797,3137,3797,739397

%N Irregular array read by rows, where T(n, k) is the k-th prime that is both left-truncatable and right-truncatable in base n.

%C The n-th row contains A323390(n) terms.

%C The largest term in the n-th row is given by A323137(n).

%H Daniel Suteu, <a href="/A323396/b323396.txt">Table of n, a(n) for n = 3..6587</a>

%H Wikipedia, <a href="https://en.wikipedia.org/wiki/Truncatable_prime">Truncatable prime</a>

%e Rows for n = 3..7:

%e [2, 23]

%e [2, 3, 11]

%e [2, 3, 13, 17, 67]

%e [2, 3, 5, 17, 23, 83, 191, 479, 839]

%e [2, 3, 5, 17, 19, 23, 37]

%o (PARI)

%o digitsToNum(d, base) = sum(k=1, #d, base^(k-1) * d[k]);

%o isLeftTruncatable(d, base) = my(ok=1); for(k=1, #d, if(!isprime(digitsToNum(d[1..k], base)), ok=0; break)); ok;

%o generateFromPrefix(p, base) = my(seq = [p]); for(n=1, base-1, my(t=concat(n, p)); if(isprime(digitsToNum(t, base)), seq=concat(seq, select(v -> isLeftTruncatable(v, base), generateFromPrefix(t, base))))); seq;

%o bothTruncatablePrimesInBase(base) = my(t=[]); my(P=primes(primepi(base-1))); for(k=1, #P, t=concat(t, generateFromPrefix([P[k]], base))); vector(#t, k, digitsToNum(t[k], base));

%o row(n) = vecsort(bothTruncatablePrimesInBase(n));

%o T(n,k) = row(n)[k];

%Y Cf. A020994, A076586, A076623, A323137, A323390.

%K nonn,base,look,tabf

%O 3,1

%A _Daniel Suteu_ and _Felix Fröhlich_, Jan 13 2019

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 13 06:03 EDT 2024. Contains 375113 sequences. (Running on oeis4.)