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.

A272679 a(n)^2 is the smallest square whose binary expansion begins with the binary expansion of n.

Original entry on oeis.org

0, 1, 2, 5, 2, 9, 5, 11, 4, 3, 9, 19, 5, 21, 15, 11, 4, 33, 6, 25, 9, 13, 19, 39, 7, 5, 29, 21, 15, 61, 11, 45, 8, 23, 33, 67, 6, 49, 35, 25, 9, 73, 13, 53, 107, 19, 77, 39, 79, 7, 10, 81, 29, 83, 59, 21, 15, 43, 61, 87, 11, 89, 63, 45, 8, 129, 23, 93, 33, 47
Offset: 0

Views

Author

N. J. A. Sloane, May 22 2016

Keywords

Examples

			a(10)=9, because 9^2 = 81 = 1010001_2 begins with 1010 = 10_2.
		

References

  • Allan C. Wechsler, posting to math-fun mailing list May 22 2016.

Crossrefs

Programs

  • Python
    from gmpy2 import isqrt
    def A272679(n):
        if n == 0:
            return 0
        else:
            d, nd = 1, n
            while True:
                x = isqrt(nd-1)+1
                if x**2 < nd+d:
                    return int(x)
                d *= 2
                nd *= 2 # Chai Wah Wu, May 22 2016

Extensions

More terms from Chai Wah Wu, May 22 2016