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.

Showing 1-3 of 3 results.

A095297 Number of A095287-primes in range ]2^n,2^(n+1)].

Original entry on oeis.org

0, 1, 0, 2, 2, 8, 7, 22, 27, 68, 80, 235, 343, 844, 1180, 2849, 4473, 10138, 15387, 37023, 58714, 134477, 213397, 494625, 802311, 1829183, 2965114, 6789809, 11185644, 25412867, 42048314, 95440507, 159433693
Offset: 1

Views

Author

Antti Karttunen, Jun 04 2004

Keywords

Comments

Ratios a(n)/A036378(n) converge as: 0, 0.5, 0, 0.4, 0.285714, 0.615385, 0.304348, 0.511628, 0.36, 0.49635, 0.313725, 0.506466, 0.393349, 0.523573, 0.389439, 0.499037, 0.416132, 0.497205, 0.398266, 0.503126, 0.418382, 0.501376, 0.415405, 0.501741, 0.42358, 0.501731, 0.421943, 0.500653, 0.426814, 0.501264, 0.428266, 0.501433, 0.431691
Ratios a(n)/A095334(n) converge as: 1, 1, 1, 0.666667, 0.666667, 1.6, 1.75, 1.047619, 0.84375, 0.985507, 0.833333, 1.026201,1.023881, 1.098958, 1.057348, 0.996154, 1.023336, 0.98888, 0.993351,1.012581, 1.011595, 1.005518, 1.016781, 1.006987, 1.008436, 1.006948,1.004514, 1.002615, 1.003668, 1.00507, 1.006392, 1.005748, 1.004982

Crossrefs

a(n) = A036378(n)-A095296(n). Cf. A095298.

A095286 Primes in whose binary expansion the number of 1 bits is > 1 + number of 0 bits.

Original entry on oeis.org

3, 7, 11, 13, 23, 29, 31, 43, 47, 53, 59, 61, 79, 103, 107, 109, 127, 151, 157, 167, 173, 179, 181, 191, 199, 211, 223, 227, 229, 233, 239, 241, 251, 311, 317, 347, 349, 359, 367, 373, 379, 383, 431, 439, 443, 461, 463, 467, 479, 487, 491, 499
Offset: 1

Views

Author

Antti Karttunen, Jun 04 2004

Keywords

Examples

			13 is in the sequence because 13 is prime and 13 = 1101_2. '1101' has three 1's and one 0. 3 > 1 + 1. - _Indranil Ghosh_, Feb 07 2017
		

Crossrefs

Complement of A095287 in A000040. Subset of A095070. Subset: A095314. Cf. also A095296.

Programs

  • PARI
    B(x) = {nB = floor(log(x)/log(2)); b1 = 0; b0 = 0;
    for(i = 0, nB, if(bittest(x,i), b1++;, b0++;); );
    if(b1 > (b0+1), return(1);, return(0);); };
    forprime(x = 3, 499, if(B(x), print1(x, ", "); ); );
    \\ Washington Bomfim, Jan 11 2011
    
  • Python
    from sympy import isprime
    i = 1
    j = 1
    while j <= 2000:
        bi = bin(i)[2:]
        if isprime(i) and bi.count("1") > 1 + bi.count("0"):
            print(str(j) + " " + str(i))
            j += 1
        i += 1 # Indranil Ghosh, Feb 07 2017

A095315 Primes in whose binary expansion the number of 1 bits is <= 2 + number of 0 bits.

Original entry on oeis.org

2, 3, 5, 11, 13, 17, 19, 37, 41, 43, 53, 67, 71, 73, 83, 89, 97, 101, 113, 131, 137, 139, 149, 151, 157, 163, 167, 173, 179, 181, 193, 197, 199, 211, 227, 229, 233, 241, 257, 263, 269, 271, 277, 281, 283, 293, 307, 313, 331, 337, 353, 389, 397
Offset: 1

Views

Author

Antti Karttunen, Jun 04 2004

Keywords

Examples

			13 is in the sequence because 13 = 1101_2. '1101' has three 1's and one 0. 3 = 2 + 1. - _Indranil Ghosh_, Feb 07 2017
		

Crossrefs

Complement of A095314 in A000040. Subset: A095287. Subset of A095319. Cf. also A095335.

Programs

  • Mathematica
    Select[Prime[Range[100]],DigitCount[#,2,1]<3+DigitCount[#,2,0]&] (* Harvey P. Dale, Aug 12 2016 *)
  • PARI
    B(x) = { nB = floor(log(x)/log(2)); b1 = 0; b0 = 0;
    for(i = 0, nB, if(bittest(x,i), b1++;, b0++;); );
    if(b1 <= (2+b0), return(1);, return(0););};
    forprime(x = 2, 397, if(B(x), print1(x, ", "); ); );
    \\ Washington Bomfim, Jan 12 2011
    
  • Python
    from sympy import isprime
    i=j=1
    while j<=250:
        if isprime(i) and bin(i)[2:].count("1")<=2+bin(i)[2:].count("0"):
            print(str(j)+" "+str(i))
            j+=1
        i+=1 # Indranil Ghosh, Feb 07 2017
Showing 1-3 of 3 results.