OFFSET
1,3
COMMENTS
Number of squarefree numbers along the main diagonal of an n X n square array whose elements are the numbers from 1..n^2, listed in increasing order by rows.
FORMULA
a(n) = Sum_{k=1..n} mu(n*k-n+k)^2, where mu is the Möbius function.
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 1 2 3 4
------------------------------------------------------------------------
numbers {1} {1} {1,5} {1,6,11} {1,7,13,19}
------------------------------------------------------------------------
MATHEMATICA
Table[Sum[MoebiusMu[n*(k - 1) + k]^2, {k, n}], {n, 100}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Wesley Ivan Hurt, May 15 2021
STATUS
approved