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”).

A063476
Sum_{d |C(n)} d^2, where C(n) is the Cototient function n - phi(n) (A051953).
1
0, 1, 1, 5, 1, 21, 1, 21, 10, 50, 1, 85, 1, 85, 50, 85, 1, 210, 1, 210, 91, 210, 1, 341, 26, 250, 91, 341, 1, 610, 1, 341, 170, 455, 122, 850, 1, 546, 260, 850, 1, 1300, 1, 850, 500, 850, 1, 1365, 50, 1300, 362, 1050, 1, 1911, 260, 1365, 500, 1300, 1, 2562, 1, 1365
OFFSET
1,4
LINKS
PROG
(PARI) C(n)=n-eulerphi(n); j=[]; for(n=1, 200, j=concat(j, sumdiv(C(n), d, d^2))); j
(PARI) { for (n=1, 1000, if (n>1, a=sumdiv(n-eulerphi(n), d, d^2), a=0); write("b063476.txt", n, " ", a) ) } \\ Harry J. Smith, Aug 22 2009
CROSSREFS
Cf. A051953.
Sequence in context: A348501 A296306 A101693 * A126325 A278544 A095368
KEYWORD
nonn
AUTHOR
Jason Earls, Jul 27 2001
STATUS
approved