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!)
A200723 Bi-unitary Euler function of n. 1
1, 1, 3, 6, 10, 10, 21, 28, 36, 32, 55, 53, 78, 66, 69, 120, 136, 112, 171, 144, 153, 170, 253, 211, 300, 240, 351, 300, 406, 237, 465, 496, 384, 416, 445, 539, 666, 522, 558, 633, 820, 444, 903, 780, 772, 770, 1081, 887, 1176, 912, 951, 1104 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
a(n) is the sum over all entries equal to 1 in row A165430(n.,), weighted by the column index.
LINKS
FORMULA
a(6) = 1*1 + 4*1 +5*1 = 10 corresponding to the three 1's in row 6 of A165430.
MAPLE
A200723 := proc(n)
local a, k ;
a := 0 ;
for k from 1 to n do
if A165430(k, n) = 1 then
a := a+ k ;
end if;
end do;
a ;
end proc:
seq(A200723(n), n=1..80) ;
PROG
(Haskell)
a200723 = sum . zipWith (*) [1..] . map a063524 . a165430_row
-- Reinhard Zumkeller, Mar 04 2013
(PARI) udivs(n) = {my(d = divisors(n)); select(x->(gcd(x, n/x)==1), d); }
a(n) = sum(k=1, n, if (vecmax(setintersect(udivs(n), udivs(k))) == 1, k)); \\ Michel Marcus, Jun 28 2023
CROSSREFS
Sequence in context: A032570 A130483 A115012 * A135738 A307574 A169911
KEYWORD
nonn,easy
AUTHOR
R. J. Mathar, Nov 21 2011
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 April 24 07:06 EDT 2024. Contains 371920 sequences. (Running on oeis4.)