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!)
A049690 a(n) = Sum_{k=1..n} phi(2*k), where phi = Euler totient function, cf. A000010. 8

%I #21 Aug 20 2021 07:21:15

%S 0,1,3,5,9,13,17,23,31,37,45,55,63,75,87,95,111,127,139,157,173,185,

%T 205,227,243,263,287,305,329,357,373,403,435,455,487,511,535,571,607,

%U 631,663,703,727,769,809,833,877,923,955,997,1037,1069,1117,1169,1205

%N a(n) = Sum_{k=1..n} phi(2*k), where phi = Euler totient function, cf. A000010.

%H Nathaniel Johnston, <a href="/A049690/b049690.txt">Table of n, a(n) for n = 0..10000</a>

%F a(n) ~ 4*n^2/Pi^2. - _Vaclav Kotesovec_, Aug 20 2021

%p A049690 := proc(n) return add(numtheory[phi](2*k), k=1..n): end: seq(A049690(n),n=0..54); # _Nathaniel Johnston_, May 24 2011

%t A049690[0]:=0; A049690[n_]:=A049690[n-1]+EulerPhi[2n]; Array[A049690,200,0] (* _Enrique PĂ©rez Herrero_, Feb 25 2012 *)

%o (PARI) a(n)=sum(k=1,n,eulerphi(2*k)) \\ _Charles R Greathouse IV_, Feb 19 2013

%Y a(n)=b(2n), where b=A049689. Bisections: A099958, A190815.

%Y Cf. A062570.

%K nonn

%O 0,3

%A _Clark Kimberling_

%E More terms from _Vladeta Jovovic_, May 18 2001

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 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)