login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Floor of sum of the first 10^n square roots.
0

%I #2 Oct 01 2013 18:06:44

%S 1,22,671,21097,666716,21082008,666667166,21081852648,666666671666,

%T 21081851083600

%N Floor of sum of the first 10^n square roots.

%e The first 10^0 square roots is 1. The sum of the first 10^1 square roots is 22.468278186... . So 22 is the second entry in the sequence.

%o (PARI) /* For this sequence, p = 2 */ g2(n,p) = for(j=0,n,s=0;for(x=0,10^j,s+=x^(1/p));print1(floor(s)","))

%K nonn

%O 0,2

%A _Cino Hilliard_, Mar 12 2008