OFFSET
1,1
COMMENTS
The original definition of this sequence was obscure: "A prime array is embedded in a binary quadratic equation that is a transform of x^2 - x + 41".
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..400
MATHEMATICA
With[{m=20}, Table[41*n^2 +k^2 +n*k, {n, m}, {k, m}]//Flatten (* G. C. Greubel, Oct 21 2023 *)
PROG
(Magma) m:=20; [41*n^2 +k^2 +n*k: k in [1..m], n in [1..m]]; // G. C. Greubel, Oct 21 2023
(SageMath) flatten([[41*n^2+k^2+n*k for k in range(1, 21)] for n in range(1, 21)]) # G. C. Greubel, Oct 21 2023
CROSSREFS
KEYWORD
nonn,tabf,easy,less
AUTHOR
Aldrich Stevens (aldrichstevens(AT)msn.com), May 27 2008
EXTENSIONS
Partially edited with better definition by Omar E. Pol, Jan 11 2009
More terms from Omar E. Pol, Jan 11 2009
STATUS
approved