cp's OEIS Frontend

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.

A140895 A Lucas-Binet triangle read by rows: t(n,m)=((( 1 + Sqrt[Prime[n]]))^m + (( 1 - Sqrt[Prime[n]]))^m)/2.

This page as a plain text file.
%I A140895 #4 Oct 12 2012 14:54:50
%S A140895 1,1,4,1,6,16,1,8,22,92,1,12,34,188,716,1,14,40,248,976,4928,1,18,52,
%T A140895 392,1616,9504,44864,1,20,58,476,1996,12560,61048,348176,1,24,70,668,
%U A140895 2876,20448,104168,658192,3608080,1,30,88,1016,4496,37440,200768
%N A140895 A Lucas-Binet triangle read by rows: t(n,m)=((( 1 + Sqrt[Prime[n]]))^m + (( 1 - Sqrt[Prime[n]]))^m)/2.
%C A140895 Row sums are: {1, 5, 23, 123, 951, 6207, 56447, 424335, 4394527, 67853311, ...}.
%D A140895 Arthur Benjamin and Jennifer J. Quinn, Fibonacci and Lucas Identities through Colored Tilings, Utilitas Mathematica, Vol 56, pp. 137-142, November, 1999. http://www.math.hmc.edu/~benjamin/papers.html
%F A140895 t(n,m)=((( 1 + Sqrt[Prime[n]]))^m + (( 1 - Sqrt[Prime[n]]))^m)/2.
%e A140895 {1},
%e A140895 {1, 4},
%e A140895 {1, 6, 16},
%e A140895 {1, 8, 22, 92},
%e A140895 {1, 12, 34, 188, 716},
%e A140895 {1, 14, 40, 248, 976, 4928},
%e A140895 {1, 18, 52, 392, 1616, 9504, 44864},
%e A140895 {1, 20, 58, 476, 1996, 12560, 61048, 348176},
%e A140895 {1, 24, 70, 668, 2876, 20448, 104168, 658192, 3608080},
%e A140895 {1, 30, 88, 1016, 4496, 37440, 200768, 1449856, 8521216, 57638400}
%t A140895 Binet[n_, m_] = ((( 1 + Sqrt[Prime[n]]))^m + (( 1 - Sqrt[Prime[n]]))^m)/2; a = Table[Table[ExpandAll[Binet[n, m]], {m, 1, n}], {n, 1, 10}]; Flatten[a]
%K A140895 nonn,tabl
%O A140895 1,3
%A A140895 _Roger L. Bagula_ and _Gary W. Adamson_, Jul 23 2008
%E A140895 Edited by _N. J. A. Sloane_, Aug 01 2008