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.

A373329 a(n)^2 is the greatest square not exceeding A000217(n^2).

Original entry on oeis.org

0, 1, 3, 6, 11, 18, 25, 35, 45, 57, 71, 85, 102, 119, 138, 159, 181, 204, 229, 255, 283, 312, 342, 374, 407, 442, 478, 515, 554, 595, 636, 679, 724, 770, 817, 866, 916, 968, 1021, 1075, 1131, 1189, 1247, 1307, 1369, 1432, 1496, 1562, 1629, 1698, 1768, 1839, 1912
Offset: 0

Views

Author

Hugo Pfoertner, Jun 01 2024

Keywords

Crossrefs

Programs

  • Maple
    a:= n-> floor(sqrt((t-> t*(t+1)/2)(n^2))):
    seq(a(n), n=0..52);  # Alois P. Heinz, Jun 01 2024
  • Mathematica
    Array[Floor@ Sqrt[(#^4 + #^2)/2] &, 53, 0] (* Michael De Vlieger, Jun 02 2024 *)
  • PARI
    a(n) = sqrtint((n^4+n^2)/2)

Formula

a(n) = A061288(n^2). - Alois P. Heinz, Jun 01 2024