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!)
A115017 a(n) = largest triangular number dividing n. 2
1, 1, 3, 1, 1, 6, 1, 1, 3, 10, 1, 6, 1, 1, 15, 1, 1, 6, 1, 10, 21, 1, 1, 6, 1, 1, 3, 28, 1, 15, 1, 1, 3, 1, 1, 36, 1, 1, 3, 10, 1, 21, 1, 1, 45, 1, 1, 6, 1, 10, 3, 1, 1, 6, 55, 28, 3, 1, 1, 15, 1, 1, 21, 1, 1, 66, 1, 1, 3, 10, 1, 36, 1, 1, 15, 1, 1, 78, 1, 10, 3, 1, 1, 28, 1, 1, 3, 1, 1, 45, 91, 1, 3, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
a(n) = A083312(n) *(A083312(n) + 1)/2.
EXAMPLE
a(12)=6 because the triangular numbers dividing 12 are 1,3 and 6.
MAPLE
a:=proc(n) local P, j; P:={}: for j from 1 to n do if type(n/(j*(j+1)/2), integer)=true then P:=P union {j*(j+1)/2} else P:=P: fi od: P[nops(P)]; end: seq(a(n), n=1..105); # Emeric Deutsch, Mar 01 2006
MATHEMATICA
With[{trnos=Accumulate[Range[100]]}, Table[Last[Select[trnos, Divisible[ n, #]&]], {n, 100}]] (* Harvey P. Dale, Nov 08 2011 *)
CROSSREFS
Sequence in context: A324284 A300791 A069972 * A088439 A162315 A109446
KEYWORD
nonn
AUTHOR
Leroy Quet, Feb 23 2006
EXTENSIONS
More terms from Emeric Deutsch, Mar 01 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 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)