login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A373329
a(n)^2 is the greatest square not exceeding A000217(n^2).
2
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,3
LINKS
FORMULA
a(n) = A061288(n^2). - Alois P. Heinz, Jun 01 2024
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 *)
PROG
(PARI) a(n) = sqrtint((n^4+n^2)/2)
CROSSREFS
Sequence in context: A084576 A024667 A363056 * A025210 A340648 A140126
KEYWORD
nonn
AUTHOR
Hugo Pfoertner, Jun 01 2024
STATUS
approved