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.

A050450 Sum_{d|n, d=1 mod 4} d^2.

Original entry on oeis.org

1, 1, 1, 1, 26, 1, 1, 1, 82, 26, 1, 1, 170, 1, 26, 1, 290, 82, 1, 26, 442, 1, 1, 1, 651, 170, 82, 1, 842, 26, 1, 1, 1090, 290, 26, 82, 1370, 1, 170, 26, 1682, 442, 1, 1, 2132, 1, 1, 1, 2402, 651, 290, 170, 2810, 82, 26, 1, 3250, 842, 1, 26, 3722, 1
Offset: 1

Views

Author

N. J. A. Sloane, Dec 23 1999

Keywords

Crossrefs

Programs

  • Haskell
    a050450 = sum . map (^ 2) . filter ((== 1) . (`mod` 4)) . a027750_row
    -- Reinhard Zumkeller, Jun 17 2013