%I A129300
%S A129300 1,2,5,8,11,19,27,35,51,67,83,110,137,164,191,218,245,272,299,345,391,
%T A129300 437,483,529,575,621,667,740,813,886,959,1032,1105,1178,1251,1359,1467,
%U A129300 1575,1683,1791,1899,2007,2115,2223,2331,2439,2547,2655,2763,2871,2979
%N A129300 a(0)=1. a(n) = a(n-1) + (sum of the terms of the sequence which are <=
n).
%H A129300 Leroy Quet, <a href="http://www.prism-of-spirals.net/">Home Page</a>
(listed in lieu of email address)
%e A129300 The terms that are <= 9 are a(0) through a(3). So a(9) = a(8) + a(0)+a(1)+a(2)+a(3)
= 51 + 1+2+5+8 = 67.
%p A129300 a[0]:=1: for n from 1 to 60 do b:=0: for j from 0 to n-1 do if a[j]<=n
then b:=b+a[j] else fi od: a[n]:=a[n-1]+b: od: seq(a[n],n=0..60);
- Emeric Deutsch (deutsch(AT)duke.poly.edu), Apr 12 2007
%Y A129300 Cf. A129299, A126022, A095114.
%Y A129300 Sequence in context: A130258 A032765 A154484 this_sequence A107679 A018846
A056661
%Y A129300 Adjacent sequences: A129297 A129298 A129299 this_sequence A129301 A129302
A129303
%K A129300 nonn
%O A129300 0,2
%A A129300 Leroy Quet Apr 08 2007
%E A129300 More terms from Emeric Deutsch (deutsch(AT)duke.poly.edu), Apr 12 2007
|