Estaba experimentando y encontré este patrón:
Comienza con un array (infinito) con la fila superior con todos los unos, y las dos columnas de la izquierda también con todos los unos.
$$ \begin{matrix} 1 & 1 & 1 & 1 & 1 & 1 & 1 & 1 & \cdots \\ 1 & 1 & ? & ? & ? & ? & ? & ? & \cdots \\ 1 & 1 & ? & ? & ? & ? & ? & ? & \cdots \\ 1 & 1 & ? & ? & ? & ? & ? & ? & \cdots \\ 1 & 1 & ? & ? & ? & ? & ? & ? & \cdots \\ 1 & 1 & ? & ? & ? & ? & ? & ? & \cdots \\ 1 & 1 & ? & ? & ? & ? & ? & ? & \cdots \\ 1 & 1 & ? & ? & ? & ? & ? & ? & \cdots \\ \vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \ddots \\ \end{matrix} $$
Luego, para encontrar las columnas, a partir de la fila superior, suma los números de la diagonal hacia la izquierda:
$$ \begin{matrix} 1 & \color{blue}{1} & \color{blue}{1} & 1 & 1 & 1 & 1 & 1 & \cdots \\ \color{blue}{1} & 1 & \color{blue}{1+1} & ? & ? & ? & ? & ? & \cdots \\ 1 & 1 & ? & ? & ? & ? & ? & ? & \cdots \\ 1 & 1 & ? & ? & ? & ? & ? & ? & \cdots \\ 1 & 1 & ? & ? & ? & ? & ? & ? & \cdots \\ 1 & 1 & ? & ? & ? & ? & ? & ? & \cdots \\ 1 & 1 & ? & ? & ? & ? & ? & ? & \cdots \\ 1 & 1 & ? & ? & ? & ? & ? & ? & \cdots \\ \vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \ddots \\ \end{matrix} $$ Después de este paso, reemplaza los números debajo del último así: $$ \begin{matrix} 1 & 1 & 1 & 1 & 1 & 1 & 1 & 1 & \cdots \\ 1 & 1 & 2 & ? & ? & ? & ? & ? & \cdots \\ 1 & 1 & 2 & ? & ? & ? & ? & ? & \cdots \\ 1 & 1 & 2 & ? & ? & ? & ? & ? & \cdots \\ 1 & 1 & 2 & ? & ? & ? & ? & ? & \cdots \\ 1 & 1 & 2 & ? & ? & ? & ? & ? & \cdots \\ 1 & 1 & 2 & ? & ? & ? & ? & ? & \cdots \\ 1 & 1 & 2 & ? & ? & ? & ? & ? & \cdots \\ \vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \ddots \\ \end{matrix} $$
Repite:
$$ \begin{matrix} 1 & 1 & \color{red}{1} & \color{red}{1} & 1 & 1 & 1 & 1 & \cdots \\ 1 & \color{red}{1} & 2 & \color{red}{1+1} & ? & ? & ? & ? & \cdots \\ \color{red}{1} & 1 & 2 & \color{red}{1+1+1} & ? & ? & ? & ? & \cdots \\ 1 & 1 & 2 & ? & ? & ? & ? & ? & \cdots \\ 1 & 1 & 2 & ? & ? & ? & ? & ? & \cdots \\ 1 & 1 & 2 & ? & ? & ? & ? & ? & \cdots \\ 1 & 1 & 2 & ? & ? & ? & ? & ? & \cdots \\ 1 & 1 & 2 & ? & ? & ? & ? & ? & \cdots \\ \vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \ddots \\ \end{matrix} $$
Reemplazar:
$$ \begin{matrix} 1 & 1 & 1 & 1 & 1 & 1 & 1 & 1 & \cdots \\ 1 & 1 & 2 & 2 & ? & ? & ? & ? & \cdots \\ 1 & 1 & 2 & 3 & ? & ? & ? & ? & \cdots \\ 1 & 1 & 2 & 3 & ? & ? & ? & ? & \cdots \\ 1 & 1 & 2 & 3 & ? & ? & ? & ? & \cdots \\ 1 & 1 & 2 & 3 & ? & ? & ? & ? & \cdots \\ 1 & 1 & 2 & 3 & ? & ? & ? & ? & \cdots \\ 1 & 1 & 2 & 3 & ? & ? & ? & ? & \cdots \\ \vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \ddots \\ \end{matrix} $$
Repite:
$$ \begin{matrix} 1 & 1 & 1 & \color{blue}{1} & \color{blue}{1} & 1 & 1 & 1 & \cdots \\ 1 & 1 & \color{blue}{2} & 2 & \color{blue}{1+2} & ? & ? & ? & \cdots \\ 1 & \color{blue}{1} & 2 & 3 & \color{blue}{1+2+1} & ? & ? & ? & \cdots \\ \color{blue}{1} & 1 & 2 & 3 & \color{blue}{1+2+1+1} & ? & ? & ? & \cdots \\ 1 & 1 & 2 & 3 & ? & ? & ? & ? & \cdots \\ 1 & 1 & 2 & 3 & ? & ? & ? & ? & \cdots \\ 1 & 1 & 2 & 3 & ? & ? & ? & ? & \cdots \\ 1 & 1 & 2 & 3 & ? & ? & ? & ? & \cdots \\ \vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \ddots \\ \end{matrix} $$
Reemplazar:
$$ \begin{matrix} 1 & 1 & 1 & 1 & 1 & 1 & 1 & 1 & \cdots \\ 1 & 1 & 2 & 2 & 3 & ? & ? & ? & \cdots \\ 1 & 1 & 2 & 3 & 4 & ? & ? & ? & \cdots \\ 1 & 1 & 2 & 3 & 5 & ? & ? & ? & \cdots \\ 1 & 1 & 2 & 3 & 5 & ? & ? & ? & \cdots \\ 1 & 1 & 2 & 3 & 5 & ? & ? & ? & \cdots \\ 1 & 1 & 2 & 3 & 5 & ? & ? & ? & \cdots \\ 1 & 1 & 2 & 3 & 5 & ? & ? & ? & \cdots \\ \vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \ddots \\ \end{matrix} $$
Supongo que ahora entiendes la idea. Así que después de rellenar la matriz, tengo:
$$ \begin{matrix} 1 & 1 & 1 & 1 & 1 & 1 & 1 & 1 & \cdots \\ 1 & 1 & 2 & 2 & 3 & 3 & 4 & ? & \cdots \\ 1 & 1 & \color{red}{2} & 3 & 4 & 5 & 7 & ? & \cdots \\ 1 & 1 & 2 & \color{red}{3} & 5 & 6 & 9 & ? & \cdots \\ 1 & 1 & 2 & 3 & \color{red}{5} & 7 & 10 & ? & \cdots \\ 1 & 1 & 2 & 3 & 5 & \color{red}{7} & 11 & ? & \cdots \\ 1 & 1 & 2 & 3 & 5 & 7 & \color{red}{11} & ? & \cdots \\ 1 & 1 & 2 & 3 & 5 & 7 & 11 & \color{red}{?} & \cdots \\ \vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \ddots \\ \end{matrix} $$
Así que parece que los números de la diagonal podrían ser los números primos. Pero el cálculo de la siguiente columna destruye esta esperanza:
$$ \begin{matrix} 1 & 1 & 1 & 1 & 1 & 1 & 1 & 1 & \cdots \\ 1 & 1 & 2 & 2 & 3 & 3 & 4 & 4 & \cdots \\ 1 & 1 & \color{red}{2} & 3 & 4 & 5 & 7 & 8 & \cdots \\ 1 & 1 & 2 & \color{red}{3} & 5 & 6 & 9 & 11 & \cdots \\ 1 & 1 & 2 & 3 & \color{red}{5} & 7 & 10 & 13 & \cdots \\ 1 & 1 & 2 & 3 & 5 & \color{red}{7} & 11 & 14 & \cdots \\ 1 & 1 & 2 & 3 & 5 & 7 & \color{red}{11} & 15 & \cdots \\ 1 & 1 & 2 & 3 & 5 & 7 & 11 & \color{red}{15} & \cdots \\ \vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \ddots \\ \end{matrix} $$
Escribir esta secuencia:
$$2, 3, 5, 7, 11, 15, \cdots $$
Así que mi pregunta es, ¿cuál es esta secuencia, que reflejaba los primos pero que de repente divergía?
1 votos
Intenta continuar unos cuantos términos más, entonces oeis.org
2 votos
Oeis sugiere que $a(n)$ es el número de particiones de $n$ .
1 votos
Gracias. Intentaré ver por qué es esto. ( $1, 1, 2, 3, 5, 7, 11, 15, 22, 30, 42, \cdots$ ) Me doy cuenta de que he ignorado imprudentemente los dos primeros $1$ 's.
2 votos
@JohnChessant Consulta la página de la OEIS oeis.org/A000041 y ver el comentario de Gary W. Adamson (comienza con "Equivale a un producto de convolución infinito..."). Su comentario tiene esta misma tabla, así que tal vez puedas obtener más información poniéndote en contacto con él si lo necesitas.