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

A194039
Sum of nonprime divisors of n^2 + 1.
2
1, 1, 11, 1, 27, 1, 86, 66, 83, 1, 123, 146, 300, 1, 227, 1, 504, 416, 363, 1, 724, 486, 912, 1, 627, 1, 1252, 786, 843, 902, 1544, 1256, 1864, 1158, 1227, 1, 2340, 1820, 1523, 1, 2582, 1766, 3490, 1938, 2027, 2118, 4499, 2306, 2403, 2502, 2603, 2706
OFFSET
1,3
LINKS
FORMULA
a(n) = A023890(n^2 + 1). - R. J. Mathar, Aug 14 2011
EXAMPLE
a(3) = 11 because 3^2 + 1 = 10 with the divisors {1, 2, 5, 10}, and the sum of the nonprime divisors is 1 + 10 = 11.
MATHEMATICA
Array[ Plus @@ (Select[ Divisors[#^2+1], (!PrimeQ[#])& ])&, 75 ]
CROSSREFS
Sequence in context: A013618 A014467 A174221 * A298084 A275304 A245677
KEYWORD
nonn,easy
AUTHOR
Michel Lagneau, Aug 12 2011
STATUS
approved