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!)
A063649 Largest b such that 1/n=1/c+1/b has integer solutions with c>b. 4
3, 4, 6, 6, 10, 8, 12, 12, 15, 12, 21, 14, 21, 24, 24, 18, 30, 20, 36, 30, 33, 24, 42, 30, 39, 36, 44, 30, 55, 32, 48, 44, 51, 60, 63, 38, 57, 52, 72, 42, 78, 44, 66, 72, 69, 48, 84, 56, 75, 68, 78, 54, 90, 80, 105, 76, 87, 60, 110, 62, 93, 112, 96, 90, 110, 68, 102, 92, 120 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,1
COMMENTS
Smallest b is (n+1) since 1/n = 1/(n(n+1))+1/(n+1).
LINKS
FORMULA
a(n) = n*A063648(n)/(A063648(n)-n) = 2n-A063428(n).
From Robert Israel, Dec 01 2019: (Start)
a(n) = n + A063717(n).
a(n) = n + 1 if and only if n is prime. (End)
EXAMPLE
a(10)=15 since 1/10=1/20+1/20=1/30+1/15=1/35+1/14=1/60+1/12=1/110+1/11, but the first sum does not have c>b, leaving the second sum to provide the value.
MAPLE
f:= proc(n) local b;
for b from 2*n-1 by -1 do
if n*b mod (b-n) = 0 then return b fi
od
end proc:
map(f, [$2..100]); # Robert Israel, Dec 01 2019
MATHEMATICA
a[n_] := n + SelectFirst[Divisors[n^2] // Reverse, #<n&];
a /@ Range[2, 100] (* Jean-François Alcover, Jun 07 2020 *)
CROSSREFS
Sequence in context: A338723 A175708 A023830 * A053158 A206924 A185443
KEYWORD
nonn,look
AUTHOR
Henry Bottomley, Jul 23 2001
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 28 09:05 EDT 2024. Contains 372020 sequences. (Running on oeis4.)