OFFSET
1,2
COMMENTS
a(n)/n approximates the behavior of the logistic map x(n+1) = r*x(n)*(1-x(n)) at the critical value r = 4 where its iterated behavior becomes chaotic.
Conjecture: starting with any given n and any 1 <= a(n) <= n and applying the rule for the sequence produces a sequence which eventually joins this one. For example, starting with a(9)=5, the sequence continues 10,3,9,11,9, at which point it has joined.
There is a number x(1) such that iterating the logistic map x(n+1) = 4*x(n)*(1-x(n)) approaches a(n)/n; in particular x(n) > 1/2 iff a(n)/n > 1/2 and lim_{n->infinity} x(n)-a(n)/n = 0. x(1) is approximately 0.74300456748016924159182578873962328734252790178266693834898117732270042549583799064232908893034253248. It appears that |x(n)-a(n)/n| < 1/sqrt(n) for all n.
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
Eric Weisstein's World of Mathematics, Logistic Map.
MATHEMATICA
a[1]=1; a[n_]:=a[n]=Floor[(4a[n-1](n-a[n-1]))/n]; Table[a[n], {n, 100}] (* Harvey P. Dale, Mar 28 2011 *)
nxt[{n_, a_}]:={n+1, Floor[4a (n+1-a)/(n+1)]}; NestList[nxt, {1, 1}, 80][[All, 2]] (* Harvey P. Dale, Dec 22 2019 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Franklin T. Adams-Watters, May 30 2008, May 31 2008
STATUS
approved