A235799 a(n) = n^2 - sigma(n).
0, 1, 5, 9, 19, 24, 41, 49, 68, 82, 109, 116, 155, 172, 201, 225, 271, 285, 341, 358, 409, 448, 505, 516, 594, 634, 689, 728, 811, 828, 929, 961, 1041, 1102, 1177, 1205, 1331, 1384, 1465, 1510, 1639, 1668, 1805, 1852, 1947, 2044, 2161, 2180, 2344, 2407
Offset: 1
Keywords
Examples
From _Omar E. Pol, Apr 04 2021: (Start) Illustration of initial terms in the first quadrant for n = 1..6: . . y| _ _ . y| _ _ |_ _ _ |_ | . y| _ |_ _ _| | | | |_| . y| _ |_ _ |_| | _| | |_ _ . y| |_ _|_| | |_ | | | | . y| |_ | | | | | | | | . |_ _ |_|_ _ |_ _|_ _ |_ _ _|_ _ |_ _ _ _|_ _ |_ _ _ _ _|_ _ . x x x x x x . n: 1 2 3 4 5 6 a(n): 0 1 5 9 19 24 . Illustration of initial terms in the first quadrant for n = 7..9: . y| _ _ _ _ . y| _ _ _ |_ _ _ _ _| | . y| _ _ _ |_ _ _ _ | | | _ _ | . |_ _ _ _| | | | |_ | | |_ | | . | | | |_ |_ _| | |_| _| . | _| | |_ _ | | . | | | | | | . | | | | | | . | | | | | | . |_ _ _ _ _ _|_ _ |_ _ _ _ _ _ _|_ _ |_ _ _ _ _ _ _ _|_ _ . x x x . n: 7 8 9 a(n): 41 49 68 . For n = 9 the figures 1, 2 and 3 below show respectively the three stages described in the Comments section as follows: . . y|_ _ _ _ _ 5 y|_ _ _ _ _ _ _ _ _ y| _ _ _ _ . |_ _ _ _ _| |_ _ _ _ _| | |_ _ _ _ _| | . | |_ _ 3 | |_ _ R | | _ _ | . | |_ | | |_ | | | |_ | | . | |_|_ _ 5 | |_|_ _| | |_| _| . | | | | | | | | . | Q | | | Q | | | | . | | | | | | | | . | | | | | | | | . |_ _ _ _ _ _ _ _|_|_ |_ _ _ _ _ _ _ _|_|_ |_ _ _ _ _ _ _ _|_ _ . x x x . Figure 1. Figure 2. Figure 3. . Symmetric Symmetric Symmetric . representation representation representation . of sigma(9) of sigma(9) of a(9) = 68 . A000203(9) = 13 A000203(9) = 13 . and of and of . Q = A024916(8) = 56 R = A004125(9) = 12 . Q = A024916(8) = 56 . Note that the symmetric representation of a(9) contains a hole formed by three cells because these three cells were the central part of the symmetric representation of sigma(9). (End)
Links
- Harvey P. Dale, Table of n, a(n) for n = 1..1000
Crossrefs
Programs
-
Magma
[n^2 - DivisorSigma(1,n): n in [1..50]]; // G. C. Greubel, Oct 31 2018
-
Mathematica
Table[n^2-DivisorSigma[1,n],{n,50}] (* Harvey P. Dale, Sep 02 2016 *)
-
PARI
vector(50, n, n^2 - sigma(n)) \\ G. C. Greubel, Oct 31 2018
Comments