cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A177052 Ceiling(n/2)-abundant numbers.

This page as a plain text file.
%I A177052 #20 Nov 17 2019 01:44:49
%S A177052 6,12,18,20,24,28,30,36,40,42,48,54,56,60,66,70,72,78,80,84,88,90,96,
%T A177052 100,102,104,108,112,114,120,126,132,138,140,144,150,156,160,162,168,
%U A177052 174,176,180,186,192,196,198,200,204,208,210,216,220,222,224,228
%N A177052 Ceiling(n/2)-abundant numbers.
%C A177052 For definition, see A175522.
%C A177052 All positive numbers == 0 (mod 6) are in the sequence (basically A008588). In addition, note that all odd primes are ceiling(n/2)-deficient numbers. The first odd term of the sequence is 315.
%H A177052 Amiram Eldar, <a href="/A177052/b177052.txt">Table of n, a(n) for n = 1..10000</a>
%F A177052 {n : Sum_{d|n, d<n} A004526(1+d) > A004526(1+n)}. [_R. J. Mathar_, Dec 11 2010]
%o A177052 (Sage) is_A177052 = lambda n: sum(ceil(d/2) for d in divisors(n)) > 2*ceil(n/2) # _D. S. McNeil_, Dec 10 2010
%o A177052 (PARI) isok(n) = sumdiv(n, d, (d<n)*ceil(d/2)) > ceil(n/2); \\ _Michel Marcus_, Feb 08 2016
%Y A177052 Cf. A177050 (perfect version), A005100, A005101, A175524, A175526, A175811, A175821, A175853.
%K A177052 nonn
%O A177052 1,1
%A A177052 _Vladimir Shevelev_, Dec 09 2010