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-2 of 2 results.

A191534 Least k with 2n divisors such that k-1 and k+1 in binary representation have same number 2n of 0's as 1's.

Original entry on oeis.org

11, 155, 2164, 33723, 539379, 8396540, 136109403, 2147745531, 34360623100, 549771505659, 8797030442667, 140737513521148, 2251823188540923, 36028801313906427, 576460760876579772
Offset: 1

Views

Author

Juri-Stepan Gerasimov, Jun 05 2011

Keywords

Comments

Does a(n) exist for every n? It seems plausible at first glance; asymptotically there should be enough numbers in the range 16^n * [1/2, 1] that have 2n divisors (since 16 > e). [Charles R Greathouse IV, Jun 05 2011]
a(16) <= 9223372071079772155. - Donovan Johnson, Sep 25 2011

Crossrefs

Programs

  • PARI
    a(n)=my(v=vector(4*n,i,i>2*n));for(k=1<<(4*n-1)+1<<(2*n-1)-1,1<<(4*n)-1<<(2*n),if(vecsort(binary(k-1))==v & vecsort(binary(k+1))==v & numdiv(k)==2*n, return(k))) \\ Charles R Greathouse IV, Jun 05 2011

Extensions

a(5)-a(11) from Charles R Greathouse IV, Jun 05 2011
a(12)-a(15) from Donovan Johnson, Sep 25 2011

A191556 Largest k with 2n divisors such that the binary representations of k-1 and k+1 are in base 2 each digitally balanced with 4n digits.

Original entry on oeis.org

11, 203, 3971, 64771, 1011875, 16752659, 267475203, 4294709251, 68715414027, 1099495919619
Offset: 1

Views

Author

Juri-Stepan Gerasimov, Jun 05 2011

Keywords

Examples

			a(2) = 203 as 203 has 4 = 2*2 divisors and 202 and 204 are both balanced. - _David A. Corneth_, Apr 26 2022
		

Crossrefs

Formula

a(n) = Max_{k: k in A191292, A000005(k)=2n, A070939(k-1)=A070939(k+1)=4*n}. - R. J. Mathar, Jun 24 2011

Extensions

a(4)-a(6) from R. J. Mathar, Jun 24 2011
a(7)-a(10) from David A. Corneth, Apr 26 2022
Showing 1-2 of 2 results.