OFFSET
1,2
COMMENTS
Number of squarefree numbers along the main antidiagonal of the n X n square array whose elements are the numbers from 1..n^2, listed in increasing order by rows.
EXAMPLE
[1 2 3 4 5]
[1 2 3 4] [6 7 8 9 10]
[1 2 3] [5 6 7 8] [11 12 13 14 15]
[1 2] [4 5 6] [9 10 11 12] [16 17 18 19 20]
[1] [3 4] [7 8 9] [13 14 15 16] [21 22 23 24 25]
------------------------------------------------------------------------
n 1 2 3 4 5
------------------------------------------------------------------------
a(n) 1 2 3 3 4
------------------------------------------------------------------------
numbers {1} {2,3} {3,5,7} {7,10,13} {5,13,17,21}
------------------------------------------------------------------------
MATHEMATICA
Table[Sum[MoebiusMu[n*k - k + 1]^2, {k, n}], {n, 100}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Wesley Ivan Hurt, May 15 2021
STATUS
approved