OFFSET
2,1
LINKS
T. D. Noe, Rows n = 2..1000 of triangle, flattened
EXAMPLE
The table starts:
2
1 2
<empty>
4
2 4
1 1 1 4
1 4
MATHEMATICA
a[n_] := If[ IntegerQ[ Sqrt[n] ], {}, ContinuedFraction[ Sqrt[n] ] // Last]; Table[a[n], {n, 2, 39}] // Flatten (* Jean-François Alcover, Sep 10 2012 *)
CROSSREFS
KEYWORD
nice,nonn,tabf
AUTHOR
Franklin T. Adams-Watters, Aug 28 2006
STATUS
approved