[go: up one dir, main page]

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

A264724
a(n) = n^2 + phi(n).
1
2, 5, 11, 18, 29, 38, 55, 68, 87, 104, 131, 148, 181, 202, 233, 264, 305, 330, 379, 408, 453, 494, 551, 584, 645, 688, 747, 796, 869, 908, 991, 1040, 1109, 1172, 1249, 1308, 1405, 1462, 1545, 1616, 1721, 1776, 1891, 1956, 2049, 2138, 2255, 2320, 2443, 2520
OFFSET
1,1
FORMULA
a(n) = A000290(n) + A000010(n).
EXAMPLE
a(5) = 29, because phi(5) = 4 and 5^2 + 4 = 29.
MATHEMATICA
Table[n^2 + EulerPhi[n], {n, 50}]
PROG
(Magma) [n^2+EulerPhi(n): n in [1..50]];
(PARI) a(n) = n^2 + eulerphi(n); \\ Altug Alkan, Nov 24 2015
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Nov 24 2015
STATUS
approved