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.
%I A255604 #20 Jan 09 2025 02:17:33 %S A255604 0,1,1,3,4,1,6,9,6,2,10,16,15,10,3,15,25,27,23,14,4,21,36,43,41,32,19, %T A255604 6,27,49,61,64,58,43,24,7,35,64,84,93,90,77,55,30,9,43,81,110,127,130, %U A255604 120,98,69,37,11,52,100,139,166,178,173,154,123,84,44,13,62,121,172 %N A255604 Table read by antidiagonals, T(n,k) is the integer part of the area of a regular k-gon with side length n. %C A255604 See illustration in the links. %H A255604 Kival Ngaokrajang, <a href="/A255604/a255604_2.pdf">Illustration of T(n,k), n = 1..4, k = 3..6</a>, <a href="/A255604/a255604_1.pdf">Example of table</a> %F A255604 T(n,k) = floor(k*n^2/(4*tan(Pi/k))), n >=1, k >=3. %e A255604 See table in the links. %t A255604 t[n_, k_] := Floor[k*n^2/(4 Tan[Pi/k])]; Table[t[n - k + 1, k], {n, 3, 14}, {k, 3 , n}] // Flatten %t A255604 (* to view table: Table[t[n, k], {k, 3, 6}, {n, 6}] // TableForm *) (* _Robert G. Wilson v_, Feb 28 2015 *) %o A255604 (PARI){for(i=1,20,for(n=3,i-1,a=floor(n*(i-n)^2/(4*tan(Pi/n)));print1(a,", ")))} %Y A255604 Row 1: A011865. %Y A255604 Columns 1,2,3,4,10: A171971, A000290, A255605, A255606, A172526. %K A255604 nonn,tabl %O A255604 1,4 %A A255604 _Kival Ngaokrajang_, Feb 27 2015