A191969 Numbers that are indices of deficient oblong numbers (A002378).
1, 10, 13, 22, 37, 43, 46, 52, 58, 61, 67, 73, 82, 85, 94, 97, 106, 109, 118, 121, 130, 133, 136, 142, 145, 148, 151, 157, 163, 166, 172, 178, 181, 190, 193, 202, 205, 211, 214, 217, 226, 229, 232, 238, 241, 250, 253, 262, 268, 277, 283, 289, 292, 298, 301, 310, 313, 316, 322, 331, 334, 337, 346, 358, 361, 373, 382, 388, 394, 397
Offset: 1
Examples
The third deficient oblong number is A002378(13) = 13*14 = 182: sigma(182) = 336 < 364 = 2*182.
References
- James J. Tattersall, Elementary Number Theory in Nine Chapters, Second Edition, Cambridge University Press, 2005.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
Select[Range[400], DivisorSigma[1, o = # (# + 1)] < 2 o &] (* Amiram Eldar, Jun 21 2019 *)
-
PARI
for(n=1, 400, o=n*(n+1); if(sigma(o)<2*o, print1(n, ", ")))
Comments