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.

A126696 Tenth-squares: floor(n/10)*ceiling(n/10).

This page as a plain text file.
%I A126696 #8 Sep 08 2022 08:45:29
%S A126696 0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,4,6,6,6,6,6,6,6,6,6,9,12,12,
%T A126696 12,12,12,12,12,12,12,16,20,20,20,20,20,20,20,20,20,25,30,30,30,30,30,
%U A126696 30,30,30,30,36,42,42,42,42,42,42,42,42,42,49,56,56,56,56,56,56,56,56,56
%N A126696 Tenth-squares: floor(n/10)*ceiling(n/10).
%F A126696 Equivalently, floor(n^2/100).
%t A126696 f[n_]:=Module[{c=n/10},Floor[c]Ceiling[c]];f[Range[0,90]] (* _Harvey P. Dale_, Apr 04 2011 *)
%o A126696 (Magma) [ Floor(n/10)*Ceiling(n/10) : n in [0..100]];
%Y A126696 Cf. A002620, A024206, A072280, A002984, A007590, A000212, A118015, A056827, A118013.
%K A126696 easy,nonn
%O A126696 0,12
%A A126696 _Jonathan Vos Post_, May 27 2007