我创建了一个数论函数的前 20 个值的表格
答案1
你说得对,你的问题是基于观点的 :-)。看起来相当不错。
无论如何,只是为了展示编写表格的另一种可能性:
\documentclass[]{article}
\usepackage{geometry}
\usepackage{booktabs}
\usepackage{siunitx}
\usepackage[skip=1ex]{caption}
\begin{document}
\begin{table}[ht]
\caption{The functions $\tau$ and $\sigma$}
\centering
\begin{tabular}{>{$}c<{$} *{5}{S[table-format= 1.0]}
S[table-format= 2.0]
S[table-format= 1.0]
*{13}{S[table-format=2.0]}
}
\toprule
n & {1} & {2} & {3} & {4} & {5} & {6} & {7} & {8} & {9} & {10}
& {11} & {12} & {13} & {14} & {15} & {16} & {17} & {18} & {19} & {20} \\
\midrule
\tau(n) & 1 & 2 & 2 & 3 & 2 & 4 & 2 & 4 & 3 & 4
& 2 & 6 & 2 & 4 & 4 & 5 & 2 & 6 & 2 & 6 \\
\sigma(n) & 1 & 3 & 4 & 7 & 6 & 12 & 8 & 15 & 13 & 18
& 12 & 28 & 14 & 24 & 24 & 31 & 18 & 39 & 20 & 42 \\
\bottomrule
\end{tabular}
\label{Table:tauandsigma}
\end{table}
\end{document}