A080818 Triangle read by rows in which the n-th row contains n distinct numbers whose sum is the smallest square.
1, 1, 3, 1, 2, 6, 1, 2, 3, 10, 1, 2, 3, 4, 6, 1, 2, 3, 4, 5, 10, 1, 2, 3, 4, 5, 6, 15, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 26, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 22, 1, 2, 3, 4, 5, 6, 7, 8
Offset: 1
Examples
1; 1,3; 1,2,6; 1,2,3,10; 1,2,3,4,6; 1,2,3,4,5,10; 1,2,3,4,5,6,15; 1,2,3,4,5,6,...
Programs
-
Maple
seq(op([seq(i,i=1..n-1),(ceil(sqrt(n*(n+1)/2)))^2 - n*(n-1)/2]),n=1..15); # C. Ronaldo
Extensions
More terms from C. Ronaldo (aga_new_ac(AT)hotmail.com), Dec 19 2004
Comments