login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A185283 Least k such that sigma(1) + sigma(2) + sigma(3) +...+ sigma(k) >= n. 6
0, 1, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..100000 (terms n = 1..1000 from G. C. Greubel)
EXAMPLE
a(3) = 2 because sigma(1) + sigma(2) + sigma(3) = 1+3+4 > 3.
MAPLE
b:= proc(n) option remember; `if`(n=0, 0,
numtheory[sigma](n)+b(n-1))
end:
a:= proc(n) option remember; local k; for k from
`if`(n=0, 0, a(n-1)) do if b(k)>=n then return k fi od
end:
seq(a(n), n=0..120); # Alois P. Heinz, Sep 12 2019
MATHEMATICA
a[n_] := (k = 1; While[ Total[ DivisorSigma[1, Range[k]]] < n, k++]; k); Table[ a[n], {n, 1, 90}]
Module[{nn=10, ad, th}, ad={#[[1]], #[[2]]}&/@Partition[Accumulate[ DivisorSigma[ 1, Range[nn]]], 2, 1]; th=Thread[{Range[2, nn], ad}]; Join[ {0, 1}, Flatten[Table[#[[1]], #[[2, 2]]-#[[2, 1]]]&/@th]]] (* Harvey P. Dale, Aug 29 2020 *)
CROSSREFS
Sequence in context: A023966 A368942 A088141 * A214972 A225687 A083291
KEYWORD
nonn
AUTHOR
Michel Lagneau, Jan 21 2012
EXTENSIONS
a(0)=0 prepended by Alois P. Heinz, Sep 12 2019
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 07:53 EDT 2024. Contains 371964 sequences. (Running on oeis4.)