[go: up one dir, main page]

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”).

A113215
Repeat A006218(n) 2n+1 times.
1
0, 1, 1, 1, 3, 3, 3, 3, 3, 5, 5, 5, 5, 5, 5, 5, 8, 8, 8, 8, 8, 8, 8, 8, 8, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20
OFFSET
0,5
LINKS
FORMULA
a(n)=sum{k=0..n, floor(sqrt(n)/(k+1))}.
PROG
(Haskell)
a113215 n = a113215_list !! n
a113215_list = concat $ zipWith take
[1, 3 ..] $ map (repeat . a006218) [0 ..]
-- Reinhard Zumkeller, May 30 2015
CROSSREFS
Cf. A006218.
Sequence in context: A112593 A213809 A204854 * A105591 A130497 A178154
KEYWORD
easy,nonn
AUTHOR
Paul Barry, Oct 18 2005
STATUS
approved