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.

A018809 Number of lines through exactly 2 points of an n X n grid of points.

Original entry on oeis.org

0, 0, 6, 12, 48, 108, 248, 428, 764, 1196, 1900, 2668, 3824, 5244, 7248, 9380, 12192, 15372, 19528, 24020, 29732, 36052, 43808, 51836, 61636, 72492, 85308, 98492, 114012, 130668, 150196, 170828, 194768, 220276, 249452, 279284, 312572, 348036
Offset: 0

Views

Author

Keywords

Programs

  • Mathematica
    a[n_] := 1/2 (f[n, 3] - 2 f[n, 2] + f[n, 1]);
    f[n_, k_] := Sum[x = kx/k; y = ky/k; If[IntegerQ[x] && IntegerQ[y] && CoprimeQ[x, y], (n - Abs[kx])(n - Abs[ky]), 0], {kx, -n + 1, n - 1}, {ky, -n + 1, n - 1}];
    Table[a[n], {n, 0, 40}] (* Jean-François Alcover, Oct 30 2018 *)

Formula

a(n) = (1/2) * (f(n, 3) - 2 f(n, 2) + f(n, 1)) where f(n, k) = Sum ((n - |kx|)(n - |ky|)); -nSeppo Mustonen, Apr 18 2009]

Extensions

An incorrect formula removed by Seppo Mustonen, Apr 25 2009