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 A203742 #8 Jan 14 2013 04:48:00 %S A203742 1,3,147,472017,866845532007,4855435238533919460876, %T A203742 612876290292461439118987323026375196, %U A203742 11137635610343871904014754055897268401888082828962414916 %N A203742 Vandermonde sequence using x^2 + xy + y^2 applied to the first n Fibonacci numbers, A000045. %C A203742 See A093883for a discussion and guide to related sequences. %t A203742 f[j_] := Fibonacci[j]; z = 11; %t A203742 u := Product[f[j]^2 + f[j] f[k] + f[k]^2, {j, 1, k - 1}] %t A203742 v[n_] := Product[u, {k, 2, n}] %t A203742 Table[v[n], {n, 1, z}] (* A203742 *) %t A203742 Table[v[n + 1]/v[n], {n, 1, z}] (* A203743 *) %K A203742 nonn %O A203742 1,2 %A A203742 _Clark Kimberling_, Jan 05 2012