A177085 Ceiling(n/3)-abundant numbers.
6, 8, 12, 16, 18, 20, 24, 28, 30, 32, 36, 40, 42, 44, 48, 54, 56, 60, 64, 66, 70, 72, 78, 80, 84, 88, 90, 96, 100, 102, 104, 108, 110, 112, 114, 120, 126, 128, 132, 136, 138, 140, 144, 150, 152, 156, 160, 162, 168, 174, 176, 180, 186, 192, 196, 198, 200
Offset: 1
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Crossrefs
Programs
-
PARI
isok(n) = sumdiv(n, d, (d
ceil(n/3); \\ Michel Marcus, Feb 08 2016 -
Sage
is_A177085 = lambda n: sum(ceil(d/3) for d in divisors(n)) > 2*ceil(n/3) # D. S. McNeil, Dec 10 2010
Comments