login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A066294
a(n) = A000203(n)^2 - A001157(n) - 2n = sigma(n)^2 - sigma_2(n) - 2n.
1
-2, 0, 0, 20, 0, 82, 0, 124, 60, 174, 0, 550, 0, 298, 286, 588, 0, 1030, 0, 1178, 482, 642, 0, 2702, 260, 862, 726, 2030, 0, 3824, 0, 2540, 1018, 1398, 934, 6298, 0, 1714, 1358, 5810, 0, 6632, 0, 4406, 3628, 2442, 0, 11870, 700, 5294, 2182, 5930, 0, 10192, 1902, 10038, 2666, 3774, 0, 22644, 0, 4282, 6140, 10540, 2506
OFFSET
1,1
COMMENTS
For primes p, a(p) = 0, otherwise positive, except for n = 1 where it is negative.
LINKS
MATHEMATICA
a[n_] := DivisorSigma[1, n]^2 - DivisorSigma[2, n] - 2n; Array[a, 65] (* Amiram Eldar, Jul 31 2019 *)
PROG
(PARI) a(n) = sigma(n)^2 - sigma(n, 2) - 2*n; \\ Michel Marcus, Mar 22 2020
CROSSREFS
Sequence in context: A003784 A368849 A244143 * A363073 A230840 A209454
KEYWORD
sign
AUTHOR
Labos Elemer, Dec 12 2001
STATUS
approved