Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                

Revision History for A016041

(Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing entries 1-10 | older changes
Primes that are palindromic in base 2 (but written here in base 10).
(history; published version)
#75 by Michael De Vlieger at Sat Apr 20 16:36:09 EDT 2024
STATUS

reviewed

approved

#74 by Michel Marcus at Sat Apr 20 13:02:24 EDT 2024
STATUS

proposed

reviewed

#73 by Michael S. Branicky at Sat Apr 20 13:00:46 EDT 2024
STATUS

editing

proposed

#72 by Michael S. Branicky at Sat Apr 20 13:00:44 EDT 2024
PROG

(Python)

from sympy import isprime

def ok(n): return isprime(n) and (b:=bin(n)[2:]) == b[::-1]

print([k for k in range(10**5) if ok(k)]) # Michael S. Branicky, Apr 20 2024

STATUS

approved

editing

#71 by Michel Marcus at Sat Jun 24 07:47:20 EDT 2023
STATUS

reviewed

approved

#70 by Joerg Arndt at Sat Jun 24 06:37:24 EDT 2023
STATUS

proposed

reviewed

#69 by Jeppe Stig Nielsen at Sat Jun 17 07:28:58 EDT 2023
STATUS

editing

proposed

#68 by Jeppe Stig Nielsen at Sat Jun 17 07:25:46 EDT 2023
COMMENTS

Number of terms less than 4^k, k=0,1,2,3,...: 2, 4, 6, 9, 12, 19, 31, 54, 94, 188, 330, 601, 1081, 1937, 3658, 6757, 12329, 23128, 43910, 83378, 156050, 295917, 570397, 1090773, 2077091, 3991188, 7717805, 14825248, 28507573, 54938370, 106350935, 1, 3, 5, 8, 11, 18, 30, 53, 93, 187, 329, 600, 1080, 1936, 3657, 6756, 12328, 23127, 43909, 83377, 156049, 295916, 570396, 1090772, 2077090, 3991187, 7717804, 14825247, 28507572, 54938369, 106350934, ..., partial sums of A095741 plus 21. - Robert G. Wilson v, Feb 23 2018, corrected by _Jeppe Stig Nielsen_, Jun 17 2023

STATUS

approved

editing

#67 by Charles R Greathouse IV at Thu Sep 08 08:44:40 EDT 2022
PROG

(MAGMAMagma) [NthPrime(n): n in [1..5000] | (Intseq(NthPrime(n), 2) eq Reverse(Intseq(NthPrime(n), 2)))]; // Vincenzo Librandi, Feb 24 2018

Discussion
Thu Sep 08
08:44
OEIS Server: https://oeis.org/edit/global/2944
#66 by Peter Luschny at Fri Mar 19 06:58:18 EDT 2021
STATUS

reviewed

approved