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.

A069293 Sum of square divisors of n <= sqrt(n).

Original entry on oeis.org

1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 1, 5, 1, 1, 1, 5, 1, 1, 1, 5, 1, 1, 1, 5, 1, 1, 1, 5, 1, 1, 1, 5, 1, 1, 1, 5, 1, 1, 1, 5, 1, 1, 1, 5, 1, 1, 1, 5, 1, 1, 1, 5, 1, 1, 1, 5, 1, 1, 1, 5, 1, 1, 1, 5, 1, 1, 1, 5, 1, 1, 1, 5, 10, 1, 1, 5, 1, 1, 1, 5, 1, 10, 1, 5, 1, 1, 1, 5, 1, 1, 10, 5, 1, 1, 1, 5, 1
Offset: 1

Views

Author

Reinhard Zumkeller, Mar 14 2002

Keywords

Crossrefs

Programs

  • Mathematica
    Table[DivisorSum[n, # &, And[IntegerQ@ Sqrt@ #, # <= Sqrt@ n] &], {n, 105}] (* Michael De Vlieger, Nov 20 2017 *)
  • PARI
    A069293(n) = sumdiv(n, d, (issquare(d)&&((d^2)<=n))*d); \\ Antti Karttunen, Nov 20 2017

Formula

G.f.: Sum_{k>=1} k^2 * x^(k^4) / (1 - x^(k^2)). - Ilya Gutkovskiy, Apr 04 2020

Extensions

More terms from Antti Karttunen, Nov 20 2017