This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A290302 #18 Feb 03 2024 16:16:27 %S A290302 1,2,19,642,52046,8012520,1939769432,718866359440,368802888131376, %T A290302 259389489641608736,238655237778415792704,270892331023142039759488, %U A290302 377446142834845276550334720,626883335555480085495326908416,1230454868521341442901679438859264 %N A290302 Permanent of Hankel matrix of the first 2n-1 prime numbers. %H A290302 Alois P. Heinz, <a href="/A290302/b290302.txt">Table of n, a(n) for n = 0..22</a> %H A290302 Wikipedia, <a href="https://en.wikipedia.org/wiki/Hankel_matrix">Hankel matrix</a>. %H A290302 Wikipedia, <a href="https://en.wikipedia.org/wiki/Permanent_(mathematics)">Permanent (mathematics)</a>. %p A290302 with(LinearAlgebra): %p A290302 a:= n-> `if`(n=0, 1, Permanent(Matrix(n, (i, j)-> ithprime(i+j-1)))): %p A290302 seq(a(n), n=0..16); %t A290302 a[n_]:=Permanent[Table[Prime[i+j-1],{i,n},{j,n}]]; Join[{1}, Array[a, 14]] (* _Stefano Spezia_, Feb 03 2024 *) %Y A290302 Cf. A024356. %K A290302 nonn %O A290302 0,2 %A A290302 _Alois P. Heinz_, Jul 26 2017