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

A115906
Numbers k such that k + sigma(k) + phi(k) is a triangular number.
1
1, 2, 5, 7, 9, 16, 144, 186, 410, 656, 680, 805, 963, 968, 1152, 1331, 1419, 1476, 1557, 1608, 2158, 2220, 2376, 2401, 2529, 2840, 3376, 3447, 3570, 3591, 4018, 5030, 5769, 5967, 6530, 6720, 6854, 6955, 7250, 7856, 8004, 8514, 8946, 9144
OFFSET
1,2
LINKS
EXAMPLE
1331 + sigma(1331) + phi(1331) = 4005 = T(89).
PROG
(PARI) isok(n) = {my(f=factor(n)); ispolygonal(n + sigma(f) + eulerphi(f), 3); } \\ Amiram Eldar, Apr 06 2023
CROSSREFS
KEYWORD
nonn
AUTHOR
Giovanni Resta, Feb 06 2006
STATUS
approved