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.

A070288 a(n) = Sum_{d|n} omega(d)*omega(n/d).

Original entry on oeis.org

0, 0, 0, 1, 0, 2, 0, 2, 1, 2, 0, 6, 0, 2, 2, 3, 0, 6, 0, 6, 2, 2, 0, 10, 1, 2, 2, 6, 0, 12, 0, 4, 2, 2, 2, 14, 0, 2, 2, 10, 0, 12, 0, 6, 6, 2, 0, 14, 1, 6, 2, 6, 0, 10, 2, 10, 2, 2, 0, 26, 0, 2, 6, 5, 2, 12, 0, 6, 2, 12, 0, 22, 0, 2, 6, 6, 2, 12, 0, 14, 3, 2, 0, 26, 2, 2, 2, 10, 0, 26, 2, 6, 2, 2, 2
Offset: 1

Views

Author

Benoit Cloitre, May 12 2002

Keywords

Crossrefs

Programs

  • Mathematica
    a[n_] := DivisorSum[n, PrimeNu[#] * PrimeNu[n/#] &]; Array[a, 100] (* Amiram Eldar, May 20 2022 *)
  • PARI
    for(n=1,100,print1(sumdiv(n,d,omega(n/d)*omega(d)),","))

Formula

a(n) = Sum_{prime p|n} A062799(n/p) = Sum_{prime p|n} Sum_{prime q|(n/p)} A000005(n/p/q). - Max Alekseyev, Aug 11 2016