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.

A069292 Sum of square roots 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, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 4, 1, 1, 3, 1, 1, 1, 3, 1, 4, 1, 3, 1, 1, 1, 3, 1, 1, 4, 3, 1, 1, 1, 3, 1
Offset: 1

Views

Author

Reinhard Zumkeller, Mar 14 2002

Keywords

Crossrefs

Programs

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

Formula

G.f.: Sum_{k>=1} k * x^(k^4) / (1 - x^(k^2)). - Ilya Gutkovskiy, Aug 19 2021

Extensions

More terms from Antti Karttunen, Nov 20 2017