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.

A331775 a(n) = Sum_{-n

Original entry on oeis.org

0, 0, 0, 5, 14, 27, 52, 85, 126, 197, 284, 387, 534, 705, 900, 1187, 1514, 1881, 2328, 2823, 3366, 4095, 4896, 5769, 6818, 7955, 9180, 10667, 12266, 13977, 15928, 18007, 20214, 22899, 25752, 28773, 32114, 35639, 39348, 43733, 48350, 53199, 58544
Offset: 1

Views

Author

N. J. A. Sloane, Feb 08 2020

Keywords

Crossrefs

This is A177720/2 and A331774/4.

Programs

  • Maple
    VR := proc(m,n,q) local a,i,j; a:=0;
    for i from -m+1 to m-1 do for j from -n+1 to n-1 do
    if gcd(i,j)=q then a:=a+(m-abs(i))*(n-abs(j)); fi; od: od: a; end;
    [seq(VR(n,n,3)/4,n=1..50)];