login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A161217 a(n) = Sum_{d|n} phi(n/d)^2*2^(d+1). 3
0, 4, 12, 32, 56, 128, 192, 400, 640, 1232, 2304, 4496, 8608, 16960, 33456, 66304, 132096, 263168, 526320, 1049872, 2100352, 4196480, 8393904, 16779152, 33565952, 67111488, 134235840, 268441424, 536906720, 1073744960, 2147560704, 4294970896, 8590069760 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = 2*A160620(n). - Jon Maiga / Georg Fischer, Jun 22 2021
MAPLE
a:= proc(n) uses numtheory;
add(phi(n/d)^2*2^(d+1), d=divisors(n))
end:
seq(a(n), n=0..32); # Alois P. Heinz, Jun 24 2021
PROG
(PARI) a(n) = if (n, sumdiv(n, d, eulerphi(n/d)^2*2^(d+1)), 0); \\ Michel Marcus, Jun 24 2021
CROSSREFS
Sequence in context: A273387 A328240 A369817 * A152527 A005104 A028921
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Nov 21 2009
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 18 15:13 EDT 2024. Contains 374388 sequences. (Running on oeis4.)