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!)
A133829 a(n) = the largest "non-isolated divisor" of 2n. A positive divisor k of n is non-isolated if k-1 or k+1 also divides n. 2
2, 2, 3, 2, 2, 4, 2, 2, 3, 5, 2, 4, 2, 2, 6, 2, 2, 4, 2, 5, 7, 2, 2, 4, 2, 2, 3, 8, 2, 6, 2, 2, 3, 2, 2, 9, 2, 2, 3, 5, 2, 7, 2, 2, 10, 2, 2, 4, 2, 5, 3, 2, 2, 4, 11, 8, 3, 2, 2, 6, 2, 2, 7, 2, 2, 12, 2, 2, 3, 5, 2, 9, 2, 2, 6, 2, 2, 13, 2, 5, 3, 2, 2, 8, 2, 2, 3, 2, 2, 10, 14, 2, 3, 2, 2, 4, 2, 2, 3 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
No odd integer has any non-isolated divisors.
LINKS
MAPLE
A133829 := proc(n) local divs, k, i ; divs := sort(convert(numtheory[divisors](2*n), list)) ; for i from 1 to nops(divs) do k := op(-i, divs) ; if k-1 in divs or k+1 in divs then RETURN(k) ; fi ; od: RETURN(0) ; end: seq(A133829(n), n=1..100) ; # R. J. Mathar, Oct 19 2007
PROG
(PARI) A133829(n) = { n = 2*n; my(m=0); fordiv(n, d, if(!(n%(1+d)) || ((d>1) && !(n%(d-1))), m = max(m, d))); (m); }; \\ Antti Karttunen, Mar 02 2023
CROSSREFS
Sequence in context: A281908 A106441 A131836 * A364925 A160651 A230296
KEYWORD
nonn
AUTHOR
Leroy Quet, Sep 25 2007
EXTENSIONS
More terms from R. J. Mathar, Oct 19 2007
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 20:33 EDT 2024. Contains 371916 sequences. (Running on oeis4.)