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

A229171 Define a sequence of real numbers by b(1)=e, b(n+1) = b(n) + log(b(n)); a(n) = smallest i such that b(i) >= e^n.

Original entry on oeis.org

1, 5, 10, 20, 41, 86, 192, 441, 1039, 2493, 6072, 14960, 37199, 93193, 234957, 595562, 1516639, 3877905, 9950908, 25615654, 66127187, 171144672, 443966371, 1154115393, 3005950908
Offset: 1

Views

Author

N. J. A. Sloane, Sep 27 2013

Keywords

Examples

			The initial terms of the b(n) sequence are approximately
2.71828182845904523536029, 3.71828182845904523536029, 5.03154351597726806940929, 6.64727031503970856301384, 8.54147660649653209023621, 10.6864105040926911986276, 13.0553833920216929230460, 15.6245839611886549261305, 18.3734295299727029212384, 21.2843351036624388705641, 24.3423064646657059114213, 27.5345223079930416816192, 30.8499628820185220765989, ...
b(5) is the first term >= e^2, so a(2) = 5.
		

Crossrefs

Programs

  • Maple
    # A229171, A229172, A229173.
    Digits:=24;
    e:=evalf(exp(1));
    lis:=[e]; a:=e;
    t1:=[1]; l:=2;
    for i from 2 to 128 do
    a:=evalf(a+log(a));
    if a >= e^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; m=exp(1); mn=m^n; for(i=1, 3005950908, if(m>=mn, print(n " " i); n++; mn=exp(1)^n); m=m+log(m)) /* Donovan Johnson, Oct 04 2013 */

Extensions

a(7)-a(25) 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

Showing 1-3 of 3 results.