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!)
A072156 Numerator of Sum_{k=1..n} phi(k)/k^2. 2
1, 5, 53, 115, 3163, 3263, 170687, 352399, 1096397, 223513, 28103473, 28459213, 4963286677, 5029541437, 25532475569, 51741301813, 15299527769557, 15415359085157, 5677532668504877, 1144538596366201, 1156827116999161, 1166157760248361, 626832724103131129 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
1, 5/4, 53/36, 115/72, 3163/1800, 3263/1800, 170687/88200, ...
MAPLE
with(numtheory); seq(numer(add(phi(k)/k^2, k = 1..n)), n = 1..25); # G. C. Greubel, Aug 25 2019
MATHEMATICA
Numerator[Table[Sum[EulerPhi[k]/k^2, {k, n}], {n, 30}]] (* Vincenzo Librandi, Nov 15 2011 *)
PROG
(PARI) a(n) = numerator( sum(k=1, n, eulerphi(k)/k^2));
vector(25, n, a(n)) \\ G. C. Greubel, Aug 25 2019
(Magma) [Numerator( &+[EulerPhi(k)/k^2: k in [1..n]] ): n in [1..25]]; // G. C. Greubel, Aug 25 2019
(Sage) [numerator( sum(euler_phi(k)/k^2 for k in (1..n)) ) for n in (1..25)] # G. C. Greubel, Aug 25 2019
(GAP) List([1..25], n-> NumeratorRat( Sum([1..n], k-> Phi(k)/k^2) ) ); # G. C. Greubel, Aug 25 2019
CROSSREFS
Cf. A072157.
Sequence in context: A142399 A107004 A139869 * A101190 A201017 A106097
KEYWORD
nonn,frac
AUTHOR
N. J. A. Sloane, Jun 28 2002
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 25 01:06 EDT 2024. Contains 371964 sequences. (Running on oeis4.)