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.

A065732 Largest square <= 2^n.

Original entry on oeis.org

1, 4, 4, 16, 25, 64, 121, 256, 484, 1024, 2025, 4096, 8100, 16384, 32761, 65536, 131044, 262144, 524176, 1048576, 2096704, 4194304, 8386816, 16777216, 33547264, 67108864, 134212225, 268435456, 536848900, 1073741824, 2147395600, 4294967296, 8589767761, 17179869184
Offset: 1

Views

Author

Labos Elemer, Nov 15 2001

Keywords

Crossrefs

Programs

  • Mathematica
    Table[Floor[Sqrt[2^w]//N]^2, {w, 1, 50}]
  • PARI
    a(n) = { sqrtint(2^n)^2 } \\ Harry J. Smith, Oct 28 2009

Formula

a(n) = A048760(A000079(n)) = A048760(2^n).