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 A330096 #9 Dec 02 2019 03:10:47 %S A330096 0,225,897,7905,27265,61985,134225,253825,537425,1015105,1613745, %T A330096 2587585,3562545,4925921,7485985,10837585,14816945,18923905,24289265, %U A330096 30135105,37040465,48281105,63033425,82430705,100968945,115087105,127426145,144189185 %N A330096 a(n) = (16/3) * squared area of a triangle with sides prime(n), prime(n+1), and prime(n+2). %H A330096 Hugo Pfoertner, <a href="/A330096/b330096.txt">Table of n, a(n) for n = 1..10000</a> %o A330096 (PARI) squaredarea(a,b,c)={my(s=(a+b+c)/2);s*(s-a)*(s-b)*(s-c)}; %o A330096 for(n=1,28,print1((16/3)*squaredarea(prime(n),prime(n+1),prime(n+2)),", ")) %Y A330096 Cf. A096377. %K A330096 nonn,easy %O A330096 1,2 %A A330096 _Hugo Pfoertner_, Dec 01 2019