A278450 a(n) = nearest integer to b(n) = c^(b(n-1)/(n-1)), where c=4 and b(1) is chosen such that the sequence neither explodes nor goes to 1.
0, 2, 4, 6, 9, 12, 14, 17, 21, 24, 27, 31, 34, 38, 41, 45, 49, 52, 56, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 101, 105, 109, 114, 118, 122, 127, 131, 135, 140, 144, 149, 153, 158, 162, 167, 172, 176, 181, 185, 190, 195, 200, 204, 209, 214, 218, 223, 228, 233, 238, 242, 247, 252, 257, 262, 267, 272, 277, 282, 287
Offset: 1
Keywords
Examples
a(2) = round(4^0.49...) = round(1.99...) = 2. a(3) = round(4^(1.99.../2)) = round(3.97...) = 4. a(4) = round(4^(3.97.../3)) = round(6.28...) = 6.
Links
- Rok Cestnik, Table of n, a(n) for n = 1..1000
- Rok Cestnik, Plot of the dependence of b(1) on c
Crossrefs
Programs
-
Mathematica
c = 4; n = 100; acc = Round[n*1.2]; th = 1000000; b1 = 0; For[p = 0, p < acc, ++p, For[d = 0, d < 9, ++d, b1 = b1 + 1/10^p; bn = b1; For[i = 1, i < Round[n*1.2], ++i, bn = N[c^(bn/i), acc]; If[bn > th, Break[]]; ]; If[bn > th, { b1 = b1 - 1/10^p; Break[]; }]; ]; ]; bnlist = {N[b1]}; bn = b1; For[i = 1, i < n, ++i, bn = N[c^(bn/i), acc]; If[bn > th, Break[]]; bnlist = Append[bnlist, N[bn]]; ]; anlist = Map[Round[#] &, bnlist]
Comments