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.

A192267 Anti-deficient numbers.

This page as a plain text file.
%I A192267 #21 Jan 13 2022 04:24:22
%S A192267 1,2,3,4,6,9,16,19,24,26,29,34,36,44,51,54,61,64,69,79,89,96,106,114,
%T A192267 131,134,139,141,146,156,159,166,169,174,191,194,201,209,211,216,219,
%U A192267 224,226,236,239,244,246,251,254,261,271,274,289,296,299,309,316
%N A192267 Anti-deficient numbers.
%C A192267 An anti-deficient number is a number n for which sigma*(n) < n, where sigma*(n) is the sum of the anti-divisors of n. Like A005100 but using anti-divisors. There are only 22 anti-deficient numbers less than 100, 159 less than 1000 and 1547 less than 10000. From an empirical observation it seems that the anti-deficient are approximately less than 18% of the anti-abundant.
%H A192267 Amiram Eldar, <a href="/A192267/b192267.txt">Table of n, a(n) for n = 1..10000</a> (terms 1..5000 from Paolo P. Lava)
%F A192267 A000027 = A073930 UNION {this set} UNION A192268.
%e A192267 24 is anti-deficient because its anti-divisors are 7, 16 and their sum is 23 < 24.
%p A192267 isA192267 := proc(n) A066417(n) < n ; end proc:
%p A192267 for n from 1 to 500 do if isA192267(n) then printf("%d,",n); end if; end do: # _R. J. Mathar_, Jul 04 2011
%t A192267 antiDefQ[n_] := Total[Cases[Range[2, n - 1], _?(Abs[Mod[n, #] - #/2] < 1 &)]] < n; Select[Range[300], antiDefQ] (* _Amiram Eldar_, Jan 13 2022 after _Michael De Vlieger_ at A066417 *)
%Y A192267 Cf. A066417, A005100, A066272, A192268.
%K A192267 nonn,easy
%O A192267 1,2
%A A192267 _Paolo P. Lava_, Jun 28 2011
%E A192267 Edited by _Ray Chandler_, Dec 05 2011