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!)
A013322 Golomb-type sequence over triangular numbers. 2
1, 3, 3, 3, 6, 6, 6, 10, 10, 10, 15, 15, 15, 15, 15, 15, 21, 21, 21, 21, 21, 21, 28, 28, 28, 28, 28, 28, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
All terms are triangular numbers; a(n) is length of n-th run.
It is understood that a(n) is taken to be the smallest number >= a(n-1) which is compatible with the description.
The apparent idempotence, a(a(n))=a(n), holds while n<191 and breaks after that. - Ivan Neretin, Apr 03 2015
LINKS
MAPLE
A:= 1, 3, 3, 3:
for n from 4 to 30 do
t:= n*(n-1)/2;
A:= A, t$A[n-1]
od:
A; # Robert Israel, Apr 03 2015
MATHEMATICA
a = {1, 3, 3, 3}; Do[a = Join[a, Array[i(i+1)/2&, a[[i]]]], {i, 3, 11}]; a (* Ivan Neretin, Apr 03 2015 *)
CROSSREFS
Cf. A001462.
Sequence in context: A057944 A281258 A080607 * A211534 A219816 A177821
KEYWORD
nonn,easy
AUTHOR
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 13:13 EDT 2024. Contains 372086 sequences. (Running on oeis4.)