A115414 Odd abundant numbers not divisible by 3.
5391411025, 26957055125, 28816162375, 33426748355, 34393484125, 37739877175, 40342627325, 48150877775, 50866790975, 53356378075, 55959128225, 59305521275, 60711976325, 61164628525, 63395557225, 64899009175, 67275433225, 68972878975, 70088343325, 74922022175, 75665665075
Offset: 1
Keywords
Examples
a(1)=5391411025 because it is the smallest abundant number (sigma(n)/n =~ 2.003) that is not divisible by 2 or 3.
Links
- David A. Corneth, Table of n, a(n) for n = 1..42320 (terms < 10^14, terms 1..394 from Donovan Johnson, terms 395..4343 from Giovanni Resta)
- Eric Weisstein's World of Mathematics, Abundant Number
Programs
-
PARI
is(n)=gcd(n,6)==1 && sigma(n,-1)>2 \\ Charles R Greathouse IV, Jul 28 2016
Extensions
Added missing term 55959128225 and a(14)-a(16) from Donovan Johnson, Dec 29 2008
a(17)-a(20) from Donovan Johnson, Dec 01 2011
More terms from M. F. Hasler, Jul 28 2016
Comments