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!)
A365819 a(n) = a(n-1) - 1 + floor(median(a) - mean(a)) where a(0) = 0, a(1) = 1, and median(a) and mean(a) are respectively the median and mean of all previous terms. 3

%I #24 Dec 16 2023 09:02:53

%S 0,1,0,-2,-3,-4,-5,-7,-8,-9,-10,-11,-12,-13,-15,-17,-19,-21,-22,-23,

%T -24,-25,-26,-27,-27,-27,-27,-27,-28,-29,-31,-33,-36,-39,-43,-47,-51,

%U -54,-57,-59,-61,-63,-64,-65,-65,-65,-65,-64,-63,-61,-58,-55,-51,-47,-43,-39,-35,-31,-28,-25,-22,-19

%N a(n) = a(n-1) - 1 + floor(median(a) - mean(a)) where a(0) = 0, a(1) = 1, and median(a) and mean(a) are respectively the median and mean of all previous terms.

%C The median of an even number of terms is taken as the mean of its middle two values, (x+y)/2.

%C The sequence seems to present a chaotic pattern. What is its asymptotic behavior?

%H Thomas Scheuerle, <a href="/A365819/a365819.png">Plot a(0)..a(20000)</a>.

%H Thomas Scheuerle, <a href="/A365819/a365819_1.png">Plot n = 0..200000</a>, blue: a(n)/10, red: mean(a(0)..a(n)), orange: 10*(median(a(0)..a(n))-mean(a(0)..a(n))). We observe new emergent chaos after periods of apparent calming.

%t a = {0, 1};

%t Do[AppendTo[a, Last[a] - 1 + Floor[Median[a] - Mean[a]]], {j, 1, 100}]

%t a[[1 ;; 100]]

%o (MATLAB)

%o function a = A365819( max_n )

%o a = [0 1];

%o for n = 3:max_n

%o a(n) = a(n-1) - 1 + floor(median(a) - mean(a));

%o end

%o end % _Thomas Scheuerle_, Dec 15 2023

%K sign

%O 0,4

%A _Andres Cicuttin_, Dec 14 2023

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 August 29 23:09 EDT 2024. Contains 375519 sequences. (Running on oeis4.)