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.

A323064 Squares whose binary complement (A035327) is a cube.

Original entry on oeis.org

0, 1, 36, 100, 484, 131044
Offset: 1

Views

Author

Alex Ratushnyak, Jan 03 2019

Keywords

Comments

Square roots: 0, 1, 6, 10, 22, 362.

Examples

			The binary complement of 100 is 27. Because 27 is a cube, 100 is in the sequence.
		

Crossrefs

Programs

  • PARI
    isok(n) = n == 0 || (issquare(n) && ispower(2^(1+logint(n, 2))-1-n, 3))
    for (n=0, 500, if (isok(n^2), print1(n^2, ", "))); \\ Michel Marcus, Jan 04 2019