login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A126161 Number of augmented amicable pairs (m,n) with m<n and for which m<=10^k, k=1,2,3,... 0
0, 0, 0, 1, 4, 9, 36, 84, 188, 420, 930, 1931 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,5
LINKS
J. M. Pedersen, Known amicable pairs.
FORMULA
An augmented amicable pair (m,n) is a pair of integers m, n with m<n and for which sigma(m)=sigma(n)=m+n-1
EXAMPLE
a(6)=9 because there are 9 augmented amicable pairs with m<=10^6
MATHEMATICA
s[n_]:=DivisorSigma[1, n]-n; AugmentedAmicableNumberQ[n_]:=If[s[s[n]+1]==n-1 && !DivisorSigma[1, n]==2n-1, True, False]; AugmentedAmicablePairList[ k_]:=(bnlist=Select[Range[k], AugmentedAmicableNumberQ[ # ]&]; newprlist= Table[Sort[{bnlist[[n]], s[bnlist[[n]]]+1}], {n, 1, Length[bnlist]}]; augamprlist=Union[newprlist, newprlist]); data=AugmentedAmicablePairList[10^7]; Table[Length[Select[data, First[ # ]<10^k &]], {k, 1, 7}]
CROSSREFS
Sequence in context: A115700 A029806 A133125 * A179934 A239213 A346537
KEYWORD
hard,nonn
AUTHOR
Ant King, Dec 20 2006
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 23:26 EDT 2024. Contains 371917 sequences. (Running on oeis4.)