A159018 a(0)=5; a(n) = a(n-1) + floor(sqrt(a(n-1))), n > 0.
5, 7, 9, 12, 15, 18, 22, 26, 31, 36, 42, 48, 54, 61, 68, 76, 84, 93, 102, 112, 122, 133, 144, 156, 168, 180, 193, 206, 220, 234, 249, 264, 280, 296, 313, 330, 348, 366, 385, 404, 424, 444, 465, 486, 508, 530, 553, 576, 600, 624, 648, 673, 698, 724, 750, 777, 804, 832, 860, 889, 918, 948, 978
Offset: 0
Keywords
Links
- Robert Israel, Table of n, a(n) for n = 0..10000
Crossrefs
Cf. A028392.
Programs
-
Maple
A:= Array(0..100): A[0]:= 5: for n from 1 to 100 do A[n]:= A[n-1]+floor(sqrt(A[n-1])) od: convert(A,list); # Robert Israel, Nov 26 2020
Comments