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!)
A118906 a(0) = 1; a(n) = |a(n-1) - n| if n is not one of the earlier terms of the sequence, otherwise a(n) = a(n-1) + n. 1
1, 2, 4, 1, 5, 10, 4, 3, 5, 4, 14, 3, 9, 4, 18, 3, 13, 4, 22, 3, 17, 4, 26, 3, 21, 4, 30, 3, 25, 4, 34, 3, 29, 4, 38, 3, 33, 4, 42, 3, 37, 4, 46, 3, 41, 4, 50, 3, 45, 4, 54, 3, 49, 4, 58, 3, 53, 4, 62, 3, 57, 4, 66, 3, 61, 4, 70, 3, 65, 4, 74, 3, 69, 4, 78, 3, 73, 4, 82, 3, 77, 4, 86, 3, 81, 4 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
MAPLE
a[0]:=1: S:={1}: for n from 1 to 100 do if member(n, S)=false then a[n]:=abs(a[n-1]-n): S:=S union {a[n]} else a[n]:=a[n-1]+n: S:=S union {a[n]} fi od: seq(a[n], n=0..100); # Emeric Deutsch, May 07 2006
MATHEMATICA
f[s_] := Block[{n, }, n = Length[s]; Return[Append[s, Abs[Last[s] + If[MemberQ[s, n], +n, -n]]]]; ]; Nest[f, {1}, 100] (* Ray Chandler, May 06 2006 *)
CROSSREFS
Sequence in context: A201283 A283739 A080427 * A085059 A336164 A181336
KEYWORD
easy,nonn
AUTHOR
Leroy Quet, May 05 2006
EXTENSIONS
Extended by Ray Chandler and Emeric Deutsch, May 06 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 01:19 EDT 2024. Contains 371906 sequences. (Running on oeis4.)