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.

A087764 Primes whose reversal is a multiple of 13.

This page as a plain text file.
%I A087764 #13 Jul 20 2022 05:15:48
%S A087764 19,31,269,281,397,401,457,463,523,773,827,1063,1117,1123,1367,1373,
%T A087764 1427,1433,1489,1549,1609,1621,1871,1931,1987,1993,2027,2089,2161,
%U A087764 2221,2399,2459,2531,2593,2647,2707,2713
%N A087764 Primes whose reversal is a multiple of 13.
%C A087764 There are no primes (besides 11) whose reversal is a multiple of 11.
%H A087764 Robert Israel, <a href="/A087764/b087764.txt">Table of n, a(n) for n = 1..10000</a>
%p A087764 digrev:= proc(n) local L, i;
%p A087764   L:= convert(n,base,10);
%p A087764   add(L[-i]*10^(i-1), i=1..nops(L))
%p A087764 end proc:
%p A087764 B:= map(digrev, {seq(i,i=13..10000,13)}):
%p A087764 sort(convert(select(isprime, B),list)); # _Robert Israel_, Oct 23 2019
%o A087764 (PARI) forprime(n=2, 3000, if(fromdigits(Vecrev(digits(n)))%13==0, print1(n, ", "))) \\ _Mohammed Yaseen_, Jul 19 2022
%Y A087764 Primes whose reversal is a multiple of k: A087762 (k=7), this sequence (k=13), A087765 (k=17), A087766 (k=19), A087767 (k=23).
%K A087764 easy,nonn,base
%O A087764 1,1
%A A087764 _Zak Seidov_, Oct 03 2003