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.

A098002 Sum of squares of distinct prime divisors p of n, where each p <= sqrt(n).

Original entry on oeis.org

0, 0, 0, 4, 0, 4, 0, 4, 9, 4, 0, 13, 0, 4, 9, 4, 0, 13, 0, 4, 9, 4, 0, 13, 25, 4, 9, 4, 0, 38, 0, 4, 9, 4, 25, 13, 0, 4, 9, 29, 0, 13, 0, 4, 34, 4, 0, 13, 49, 29, 9, 4, 0, 13, 25, 53, 9, 4, 0, 38, 0, 4, 58, 4, 25, 13, 0, 4, 9, 78, 0, 13, 0, 4, 34, 4, 49, 13, 0, 29, 9, 4, 0, 62, 25, 4, 9, 4, 0, 38, 49
Offset: 1

Views

Author

Leroy Quet, Sep 08 2004

Keywords

Examples

			2 and 3 are the distinct prime divisors of 12 and both 2 and 3 are <= sqrt(12), so a(12) = 2^2 + 3^2 = 13.
		

Crossrefs

Cf. A097974.

Programs

  • Mathematica
    ssdpd[n_]:=Total[Select[Transpose[FactorInteger[n]][[1]],#<=Sqrt[n]&]^2]; Join[{0},Array[ssdpd,90,2]] (* Harvey P. Dale, Mar 11 2013 *)
  • PARI
    a(n) = sumdiv(n, d, isprime(d)*(d^2<=n)*d^2); \\ Michel Marcus, Dec 22 2017

Formula

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

Extensions

More terms from John W. Layman, Sep 14 2004