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!)
A077798 Palindromic wing primes (a.k.a. near-repdigit palindromic primes) of the general form r*(10^d - 1)/9 + (m-r)*10^floor(d/2) where d is the number of digits (an odd number > 1), r is the repeated digit, and m (different from r) is the middle digit. 48

%I #30 Sep 08 2022 08:45:07

%S 101,131,151,181,191,313,353,373,383,727,757,787,797,919,929,11311,

%T 11411,33533,77377,77477,77977,1114111,1117111,3331333,3337333,

%U 7772777,7774777,7778777,111181111,111191111,777767777,77777677777,99999199999,1111118111111

%N Palindromic wing primes (a.k.a. near-repdigit palindromic primes) of the general form r*(10^d - 1)/9 + (m-r)*10^floor(d/2) where d is the number of digits (an odd number > 1), r is the repeated digit, and m (different from r) is the middle digit.

%C Prime versus probable prime status and proofs are given in the author's table.

%D C. Caldwell and H. Dubner, "Journal of Recreational Mathematics", Volume 28, No. 1, 1996-97, pp. 1-9.

%H Jon E. Schoenfield, <a href="/A077798/b077798.txt">Table of n, a(n) for n = 1..124</a>

%H Patrick De Geest, <a href="http://www.worldofnumbers.com/wing.htm">PWP Reference Table</a>

%H Ernest G. Hibbs, <a href="https://www.proquest.com/openview/4012f0286b785cd732c78eb0fc6fce80">Component Interactions of the Prime Numbers</a>, Ph. D. Thesis, Capitol Technology Univ. (2022), see p. 33.

%o (Magma) a:=[]; for d in [3..13 by 2] do for r in [1..9] do for m in [0..9] do if m ne r then t:=r*((10^d-1) div 9) + (m-r)*10^(d div 2); if IsPrime(t) then a[#a+1]:=t; end if; end if; end for; end for; end for; a; // _Jon E. Schoenfield_, Nov 04 2018

%Y Cf. A077775-A077797.

%K nonn,base

%O 1,1

%A _Patrick De Geest_, Nov 16 2002

%E Offset corrected by _Arkadiusz Wesolowski_, Sep 13 2011

%E Name edited and one more term added by _Jon E. Schoenfield_, Nov 03 2018

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 April 25 12:53 EDT 2024. Contains 371969 sequences. (Running on oeis4.)