cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-6 of 6 results.

A278812 Decimal expansion of b(1) in the sequence b(n+1) = c^(b(n)/n) A278452, where c = e = 2.71828... and b(1) is chosen such that the sequence neither explodes nor goes to 1.

Original entry on oeis.org

1, 3, 6, 7, 9, 0, 1, 2, 6, 1, 7, 9, 7, 0, 8, 5, 1, 6, 9, 6, 6, 8, 9, 0, 9, 1, 7, 5, 7, 6, 0, 4, 8, 8, 5, 3, 8, 3, 8, 4, 6, 2, 4, 5, 2, 6, 1, 8, 2, 1, 3, 5, 7, 7, 0, 4, 1, 4, 6, 0, 3, 7, 1, 3, 8, 6, 3, 3, 1, 7, 9, 4, 4, 8, 8, 0, 1, 5, 6, 8, 6, 5, 6, 6, 7, 1, 5, 8, 8, 6, 8, 3, 7, 2, 7, 7, 3, 7, 4, 9, 5, 6, 2, 4, 7, 7, 4, 3, 3, 4, 9, 8, 1, 9, 3, 3, 3, 6, 1, 7, 1, 9, 6, 1, 1, 1, 3, 2, 2, 8
Offset: 1

Views

Author

Rok Cestnik, Nov 28 2016

Keywords

Comments

For the given c there exists a unique b(1) for which the sequence b(n) does not converge to 1 and at the same time always satisfies b(n-1)b(n+1)/b(n)^2 < 1.
If b(1) were chosen smaller the sequence b(n) would approach 1, if it were chosen greater it would at some point violate b(n-1)b(n+1)/b(n)^2 < 1 and from there on quickly escalate.
The value of b(1) is found through trial and error. Illustrative example for the case of c=2 (for c=e similar): "Suppose one starts with b(1) = 2, the sequence b(n) would continue b(2) = 4, b(3) = 4, b(4) = 2.51..., b(5) = 1.54... and from there one can see that such a sequence is tending to 1. One continues by trying a larger value, say b(1) = 3, which gives rise to b(2) = 8, b(3) = 16, b(4) = 40.31... and from there one can see that such a sequence is escalating too fast. Therefore, one now knows that the true value of b(1) is between 2 and 3."

Examples

			1.36790126179708516966890917576048853838462452618213...
		

Crossrefs

For sequence round(b(n)) see A278452.
For different values of c see A278808, A278809, A278810, A278811.
For b(1)=0 see A278813.

Programs

  • Mathematica
    c = E;
    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[];
          }];
        ];
      ];
    N[b1,n]
    RealDigits[ Fold[ Log[#1*#2] &, 1, Reverse@ Range[2, 160]], 10, 111][[1]] (* Robert G. Wilson v, Dec 02 2016 *)

Formula

log(2*log(3*log(4*log(...)))). - Andrey Zabolotskiy, Nov 30 2016

A278448 a(n) = nearest integer to b(n) = c^(b(n-1)/(n-1)), where c=2 and b(1) is chosen such that the sequence neither explodes nor goes to 1.

Original entry on oeis.org

3, 7, 13, 19, 25, 32, 39, 46, 53, 61, 69, 77, 85, 93, 102, 110, 119, 128, 136, 145, 154, 163, 173, 182, 191, 201, 210, 220, 229, 239, 248, 258, 268, 278, 288, 298, 307, 318, 328, 338, 348, 358, 368, 379, 389, 399, 410, 420, 430, 441, 451, 462, 473, 483, 494, 505, 515, 526, 537, 547, 558, 569, 580, 591, 602, 613, 624, 635, 646, 657
Offset: 1

Views

Author

Rok Cestnik, Nov 22 2016

Keywords

Comments

For the given c there exists a unique b(1) for which the sequence b(n) does not converge to 1 and at the same time always satisfies b(n-1)b(n+1)/b(n)^2 < 1 (due to rounding to the nearest integer a(n-1)a(n+1)/a(n)^2 is not always less than 1).
In this case b(1) = 2.8718808270... A278808. If b(1) were chosen smaller the sequence would approach 1, if it were chosen greater the sequence would at some point violate b(n-1)b(n+1)/b(n)^2 < 1 and from there on quickly escalate.
The value of b(1) is found through trial and error. Suppose one starts with b(1) = 2, the sequence would continue b(2) = 4, b(3) = 4, b(4) = 2.51..., b(5) = 1.54... and from there one can see that such a sequence is tending to 1. One continues by trying a larger value, say b(1) = 3, which gives rise to b(2) = 8, b(3) = 16, b(4) = 40.31... and from there one can see that such a sequence is escalating too fast. Therefore, one now knows that the true value of b(1) is between 2 and 3.
b(n) = n*log_2((n+1)*log_2((n+2)*log_2(...))) ~ n*log_2(n). - Andrey Zabolotskiy, Dec 01 2016

Examples

			a(2) = round(2^2.87...) = round(7.32...) = 7.
a(3) = round(2^(7.32.../2)) = round(12.64...) = 13.
a(4) = round(2^(12.64.../3)) = round(18.55...) = 19.
		

Crossrefs

For decimal expansion of b(1) see A278808.
For different values of c see A278449, A278450, A278451, A278452.
For b(1)=0 see A278453.

Programs

  • Mathematica
    c = 2;
    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]

A278449 a(n) = nearest integer to b(n) = c^(b(n-1)/(n-1)), where c=3 and b(1) is chosen such that the sequence neither explodes nor goes to 1.

Original entry on oeis.org

1, 3, 6, 9, 13, 16, 20, 24, 29, 33, 37, 42, 47, 51, 56, 61, 66, 71, 76, 81, 86, 92, 97, 102, 108, 113, 118, 124, 129, 135, 141, 146, 152, 158, 163, 169, 175, 181, 187, 193, 199, 205, 210, 216, 222, 229, 235, 241, 247, 253, 259, 265, 271, 278, 284, 290, 296, 303, 309, 315, 322, 328, 334, 341, 347, 354, 360, 367, 373, 379
Offset: 1

Views

Author

Rok Cestnik, Nov 22 2016

Keywords

Comments

For the given c there exists a unique b(1) for which the sequence b(n) does not converge to 1 and at the same time always satisfies b(n-1)b(n+1)/b(n)^2 < 1 (due to rounding to the nearest integer a(n-1)a(n+1)/a(n)^2 is not always less than 1).
In this case b(1) = 1.0828736095... A278809. If b(1) were chosen smaller the sequence would approach 1, if it were chosen greater the sequence would at some point violate b(n-1)b(n+1)/b(n)^2 < 1 and from there on quickly escalate.
The value of b(1) is found through trial and error. Illustrative example for the case of c=2 (for c=3 similar): "Suppose one starts with b(1) = 2, the sequence would continue b(2) = 4, b(3) = 4, b(4) = 2.51..., b(5) = 1.54... and from there one can see that such a sequence is tending to 1. One continues by trying a larger value, say b(1) = 3, which gives rise to b(2) = 8, b(3) = 16, b(4) = 40.31... and from there one can see that such a sequence is escalating too fast. Therefore, one now knows that the true value of b(1) is between 2 and 3."
b(n) = n*log_3((n+1)*log_3((n+2)*log_3(...))) ~ n*log_3(n). - Andrey Zabolotskiy, Dec 01 2016

Examples

			a(2) = round(3^1.08...) = round(3.28...) = 3.
a(3) = round(3^(3.28.../2)) = round(6.07...) = 6.
a(4) = round(3^(6.07.../3)) = round(9.26...) = 9.
		

Crossrefs

For decimal expansion of b(1) see A278809.
For different values of c see A278448, A278450, A278451, A278452.
For b(1)=0 see A278453.

Programs

  • Mathematica
    c = 3;
    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]

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.

Original entry on oeis.org

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

Views

Author

Rok Cestnik, Nov 22 2016

Keywords

Comments

For the given c there exists a unique b(1) for which the sequence b(n) does not converge to 1 and at the same time always satisfies b(n-1)b(n+1)/b(n)^2 < 1 (due to rounding to the nearest integer a(n-1)a(n+1)/a(n)^2 is not always less than 1).
In this case b(1) = 0.4970450000... A278810. If b(1) were chosen smaller the sequence would approach 1, if it were chosen greater the sequence would at some point violate b(n-1)b(n+1)/b(n)^2 < 1 and from there on quickly escalate.
The value of b(1) is found through trial and error. Illustrative example for the case of c=2 (for c=4 similar): "Suppose one starts with b(1) = 2, the sequence would continue b(2) = 4, b(3) = 4, b(4) = 2.51..., b(5) = 1.54... and from there one can see that such a sequence is tending to 1. One continues by trying a larger value, say b(1) = 3, which gives rise to b(2) = 8, b(3) = 16, b(4) = 40.31... and from there one can see that such a sequence is escalating too fast. Therefore, one now knows that the true value of b(1) is between 2 and 3."
b(n) = n*log_4((n+1)*log_4((n+2)*log_4(...))) ~ n*log_4(n). - Andrey Zabolotskiy, Dec 01 2016

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.
		

Crossrefs

For decimal expansion of b(1) see A278810.
For different values of c see A278448, A278449, A278451, A278452.
For b(1)=0 see A278453.

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]

A278451 a(n) = nearest integer to b(n) = c^(b(n-1)/(n-1)), where c=5 and b(1) is chosen such that the sequence neither explodes nor goes to 1.

Original entry on oeis.org

0, 1, 3, 5, 7, 9, 11, 14, 17, 19, 22, 25, 28, 31, 34, 37, 40, 43, 46, 49, 52, 56, 59, 62, 66, 69, 73, 76, 80, 83, 87, 90, 94, 98, 101, 105, 109, 112, 116, 120, 123, 127, 131, 135, 139, 143, 146, 150, 154, 158, 162, 166, 170, 174, 178, 182, 186, 190, 194, 198, 202, 206, 210, 214, 218, 222, 226, 231, 235, 239
Offset: 1

Views

Author

Rok Cestnik, Nov 22 2016

Keywords

Comments

For the given c there exists a unique b(1) for which the sequence b(n) does not converge to 1 and at the same time always satisfies b(n-1)b(n+1)/b(n)^2 < 1 (due to rounding to the nearest integer a(n-1)a(n+1)/a(n)^2 is not always less than 1).
In this case b(1) = 0.1775819188... A278811. If b(1) were chosen smaller the sequence would approach 1, if it were chosen greater the sequence would at some point violate b(n-1)b(n+1)/b(n)^2 < 1 and from there on quickly escalate.
The value of b(1) is found through trial and error. Illustrative example for the case of c=2 (for c=5 similar): "Suppose one starts with b(1) = 2, the sequence would continue b(2) = 4, b(3) = 4, b(4) = 2.51..., b(5) = 1.54... and from there one can see that such a sequence is tending to 1. One continues by trying a larger value, say b(1) = 3, which gives rise to b(2) = 8, b(3) = 16, b(4) = 40.31... and from there one can see that such a sequence is escalating too fast. Therefore, one now knows that the true value of b(1) is between 2 and 3."
b(n) = n*log_5((n+1)*log_5((n+2)*log_5(...))) ~ n*log_5(n). - Andrey Zabolotskiy, Dec 01 2016

Examples

			a(2) = round(5^0.17...) = round(1.33...) = 1.
a(3) = round(5^(1.33.../2)) = round(2.91...) = 3.
a(4) = round(5^(2.91.../3)) = round(4.78...) = 5.
		

Crossrefs

For decimal expansion of b(1) see A278811.
For different values of c see A278448, A278449, A278450, A278452.
For b(1)=0 see A278453.

Programs

  • Mathematica
    c = 5;
    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]

A278453 a(n) = nearest integer to b(n) = c^(b(n-1)/(n-1)), where b(1)=0 and c is chosen such that the sequence neither explodes nor goes to 1.

Original entry on oeis.org

0, 1, 2, 4, 6, 8, 10, 12, 15, 17, 19, 22, 25, 27, 30, 33, 35, 38, 41, 44, 47, 50, 53, 56, 59, 62, 65, 68, 71, 75, 78, 81, 84, 88, 91, 94, 98, 101, 104, 108, 111, 114, 118, 121, 125, 128, 132, 135, 139, 142, 146, 149, 153, 157, 160, 164, 167, 171, 175, 178, 182, 186, 189, 193, 197, 201, 204, 208, 212, 216
Offset: 1

Views

Author

Rok Cestnik, Nov 22 2016

Keywords

Comments

There exists a unique value of c for which the sequence b(n) does not converge to 1 and at the same time always satisfies b(n-1)b(n+1)/b(n)^2 < 1 (due to rounding to the nearest integer a(n-1)a(n+1)/a(n)^2 is not always less than 1).
Its value: c = 5.7581959391... A278813. If c were chosen smaller the sequence would approach 1, if it were chosen greater the sequence would at some point violate b(n-1)b(n+1)/b(n)^2 < 1 and from there on quickly escalate.
The value of c is found through trial and error. Suppose one starts with c = 5, the sequence would continue b(2) = 1, b(3) = 2.23..., b(4) = 3.31..., b(5) = 3.80..., b(6) = 3.39..., b(7) = 2.48..., b(8) = 1.77... and from there one can see that such a sequence is tending to 1. One continues by trying a larger value, say c = 6, which gives rise to b(2) = 1, b(3) = 2.44, b(4) = 4.31..., b(5) = 6.92..., b(6) = 11.94..., b(7) = 35.38... and from there one can see that such a sequence is escalating too fast. Therefore, one now knows that the true value of c is between 5 and 6.
b(n) = n*log_c((n+1)*log_c((n+2)*log_c(...))). At n=1 this gives the relation between c and b(1). It follows that b(n) ~ n*log_c(n). - Andrey Zabolotskiy, Nov 30 2016

Examples

			a(2) = round(5.75...^0) = round(1) = 1.
a(3) = round(5.75...^(1/2)) = round(2.39...) = 2.
a(4) = round(5.75...^(2.39.../3)) = round(4.05...) = 4.
		

Crossrefs

For decimal expansion of c see A278813.
For different values of b(1) see A278448, A278449, A278450, A278451, A278452.

Programs

  • Mathematica
    b1 = 0;
    n = 100;
    acc = Round[n*1.2];
    th = 1000000;
    c = 0;
    For[p = 0, p < acc, ++p,
      For[d = 0, d < 9, ++d,
        c = c + 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, {
          c = c - 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]

Formula

a(n) = round(n*log_c((n+1)*log_c((n+2)*log_c(...)))). - Andrey Zabolotskiy, Nov 30 2016
Showing 1-6 of 6 results.