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-4 of 4 results.

A229168 Define a sequence of real numbers by b(1)=2, b(n+1) = b(n) + log_2(b(n)); a(n) = smallest i such that b(i) >= 2^n.

Original entry on oeis.org

1, 3, 5, 7, 11, 17, 27, 44, 74, 127, 225, 402, 728, 1333, 2459, 4566, 8525, 15993, 30122, 56936, 107953, 205253, 391223, 747369, 1430648, 2743721, 5270959, 10141978, 19542806, 37708232, 72849931, 140905791, 272836175, 528832794, 1026008203, 1992390617
Offset: 1

Views

Author

N. J. A. Sloane, Sep 27 2013

Keywords

Examples

			The initial terms of the b(n) sequence are approximately
2, 3.00000000000000000000000, 4.58496250072115618145375, 6.78187243514238888864578, 9.54355608312733448665509, 12.7980830210090262451102, 16.4759388461842196480290, 20.5182276175427023220954, 24.8770618274970204646817, 29.5138060245244394221195, 34.3971240984210783617324, ...
b(5) is the first term >= 8, so a(3) = 5.
		

Crossrefs

Programs

  • Maple
    # A229168, A229169, A229170.
    Digits:=24;
    log2:=evalf(log(2));
    lis:=[2]; a:=2;
    t1:=[1]; l:=2;
    for i from 2 to 128 do
    a:=evalf(a+log(a)/log2);
    if a >= 2^l then
    l:=l+1; t1:=[op(t1),i]; fi;
    lis:=[op(lis),a];
    od:
    lis;
    map(floor,lis);
    map(ceil,lis);
    t1;
  • PARI
    n=1; p2=2^n; m=2; lg2=log(2); for(i=1, 1992390617, if(m>=p2, print(n " " i); n++; p2=2^n); m=m+log(m)/lg2) /* Donovan Johnson, Oct 04 2013 */

Extensions

a(11)-a(36) from Donovan Johnson, Oct 04 2013

A229173 Define a sequence of real numbers by b(1)=e, b(n+1) = b(n) + log(b(n)); a(n) = ceiling( b(n) ).

Original entry on oeis.org

3, 4, 6, 7, 9, 11, 14, 16, 19, 22, 25, 28, 31, 35, 38, 42, 46, 49, 53, 57, 61, 65, 70, 74, 78, 83, 87, 91, 96, 100, 105, 110, 114, 119, 124, 129, 134, 139, 143, 148, 153, 158, 163, 169, 174, 179, 184, 189, 194, 200, 205, 210, 216, 221, 226, 232, 237, 243, 248, 254, 259, 265, 270, 276, 282, 287, 293, 299, 304, 310, 316
Offset: 1

Views

Author

N. J. A. Sloane, Sep 27 2013

Keywords

Crossrefs

A229172 Define a sequence of real numbers by b(1)=e, b(n+1) = b(n) + log(b(n)); a(n) = floor( b(n) ).

Original entry on oeis.org

2, 3, 5, 6, 8, 10, 13, 15, 18, 21, 24, 27, 30, 34, 37, 41, 45, 48, 52, 56, 60, 64, 69, 73, 77, 82, 86, 90, 95, 99, 104, 109, 113, 118, 123, 128, 133, 138, 142, 147, 152, 157, 162, 168, 173, 178, 183, 188, 193, 199, 204, 209, 215, 220, 225, 231, 236, 242, 247, 253, 258, 264, 269, 275, 281, 286, 292, 298, 303, 309, 315
Offset: 1

Views

Author

N. J. A. Sloane, Sep 27 2013

Keywords

Crossrefs

A229175 Decimal expansion of e + 1 + log(e+1).

Original entry on oeis.org

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

Views

Author

N. J. A. Sloane, Sep 28 2013

Keywords

Comments

This is the third term in the sequence of real numbers discussed in A229171-A229173.

Examples

			5.0315435159772680694092829663205181396725271793703079496860...
		

Crossrefs

Programs

  • Mathematica
    RealDigits[E+1+Log[E+1],10,120][[1]] (* Harvey P. Dale, Dec 03 2014~ *)
Showing 1-4 of 4 results.