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-10 of 25 results. Next

A017981 Powers of cube root of 2 rounded up.

Original entry on oeis.org

1, 2, 2, 2, 3, 4, 4, 6, 7, 8, 11, 13, 16, 21, 26, 32, 41, 51, 64, 81, 102, 128, 162, 204, 256, 323, 407, 512, 646, 813, 1024, 1291, 1626, 2048, 2581, 3251, 4096, 5161, 6502, 8192, 10322, 13004, 16384, 20643, 26008, 32768, 41286, 52016, 65536, 82571, 104032
Offset: 0

Views

Author

Keywords

Crossrefs

Cf. A017979.

Programs

  • Magma
    [Ceiling(2^(n/3)): n in [1..60]]; // Vincenzo Librandi, Jan 05 2014
  • Mathematica
    Table[Ceiling[(2^(1/3))^n], {n, 0, 300}] (* Vincenzo Librandi, Jan 05 2014 *)
  • PARI
    a(n) = ceil(sqrtn(2, 3)^n); \\ Michel Marcus, Jan 03 2014
    
  • Python
    def icbrt(a):
        sr = 1 << (int.bit_length(int(a)) >> 1)
        while a < sr*sr*sr:  sr>>=1
        b = sr>>1
        while b:
          s = sr+b
          if a >= s*s*s:  sr = s
          b>>=1
        return sr
    for n in range(100):  print(1+icbrt(2**n-1), end=",")
    # Alex Ratushnyak, Jan 04 2014
    

Extensions

a(44)-a(50) from Alex Ratushnyak, Jan 02 2014

A018024 Powers of cube root of 17 rounded down.

Original entry on oeis.org

1, 2, 6, 17, 43, 112, 289, 743, 1910, 4913, 12632, 32482, 83521, 214756, 552198, 1419857, 3650852, 9387368, 24137569, 62064486, 159585272, 410338673, 1055096275, 2712949630, 6975757441, 17936636688, 46120143716, 118587876497, 304922823711, 784042443182
Offset: 0

Views

Author

Keywords

Crossrefs

Cf. A010589, A018025, A018026, and powers of cube root of k rounded down: A017979 (k=2), A017982 (k=3), A017985 (k=4), A017988 (k=5), A017991 (k=6), A017994 (k=7), A018000 (k=9), A018003 (k=10), A018006 (k=11), A018009 (k=12), A018012 (k=13), A018015 (k=14), A018018 (k=15), A018021 (k=16), this sequence (k=17), A018027 (k=18), A018030 (k=19), A018033 (k=20), A018036 (k=21), A018039 (k=22), A018042 (k=23), A018045 (k=24).

Programs

Extensions

More terms from Michel Marcus, Nov 23 2013

A017982 Powers of cube root of 3 rounded down.

Original entry on oeis.org

1, 1, 2, 3, 4, 6, 9, 12, 18, 27, 38, 56, 81, 116, 168, 243, 350, 505, 729, 1051, 1516, 2187, 3154, 4549, 6561, 9462, 13647, 19683, 28387, 40942, 59049, 85163, 122826, 177147, 255490, 368480, 531441, 766470, 1105441, 1594323, 2299411, 3316325, 4782969, 6898234
Offset: 0

Views

Author

Keywords

Crossrefs

Cf. sequences of the type: Powers of cube root of (k) rounded down A017979 (k=2), this sequence (k=3), A017985 (k=4), A017988 (k=5), A017991 (k=6), A017994 (k=7), A018000 (k=9), A018003 (k=10), A018006 (k=11), A018009 (k=12), A018012 (k=13), A018015 (k=14), A018018 (k=15), A018021 (k=16), A018024 (k=17), A018027 (k=18), A018030 (k=19), A018033 (k=20), A018036 (k=21), A018039 (k=22), A018042 (k=23), A018045 (k=24).

Programs

Extensions

More terms from Vincenzo Librandi, Jan 06 2014

A017985 Powers of cube root of 4 rounded down.

Original entry on oeis.org

1, 1, 2, 4, 6, 10, 16, 25, 40, 64, 101, 161, 256, 406, 645, 1024, 1625, 2580, 4096, 6501, 10321, 16384, 26007, 41285, 65536, 104031, 165140, 262144, 416127, 660561, 1048576, 1664510, 2642245, 4194304, 6658042, 10568983, 16777216, 26632170, 42275935, 67108864
Offset: 0

Views

Author

Keywords

Crossrefs

Cf. sequences of the type: Powers of cube root of (k) rounded down A017979 (k=2), A017982 (k=3), this sequence (k=4), A017988 (k=5), A017991 (k=6), A017994 (k=7), A018000 (k=9), A018003 (k=10), A018006 (k=11), A018009 (k=12), A018012 (k=13), A018015 (k=14), A018018 (k=15), A018021 (k=16), A018024 (k=17), A018027 (k=18), A018030 (k=19), A018033 (k=20), A018036 (k=21), A018039 (k=22), A018042 (k=23), A018045 (k=24).

Programs

Formula

a(n) = floor(4^(n/3)). - Wesley Ivan Hurt, Sep 04 2022

Extensions

More terms from Vincenzo Librandi, Jan 06 2014

A017988 Powers of cube root of 5 rounded down.

Original entry on oeis.org

1, 1, 2, 5, 8, 14, 25, 42, 73, 125, 213, 365, 625, 1068, 1827, 3125, 5343, 9137, 15625, 26718, 45687, 78125, 133591, 228438, 390625, 667959, 1142194, 1953125, 3339796, 5710972, 9765625, 16698983, 28554860, 48828125, 83494919, 142774303, 244140625
Offset: 0

Views

Author

Keywords

Crossrefs

Cf. powers of cube root of k rounded down: A017979 (k=2), A017982 (k=3), A017985 (k=4), this sequence (k=5), A017991 (k=6), A017994 (k=7), A018000 (k=9), A018003 (k=10), A018006 (k=11), A018009 (k=12), A018012 (k=13), A018015 (k=14), A018018 (k=15), A018021 (k=16), A018024 (k=17), A018027 (k=18), A018030 (k=19), A018033 (k=20), A018036 (k=21), A018039 (k=22), A018042 (k=23), A018045 (k=24).

Programs

Extensions

More terms From Vincenzo Librandi, Jan 06 2014

A017991 Powers of cube root of 6 rounded down.

Original entry on oeis.org

1, 1, 3, 6, 10, 19, 36, 65, 118, 216, 392, 713, 1296, 2354, 4279, 7776, 14129, 25675, 46656, 84779, 154054, 279936, 508677, 924328, 1679616, 3052064, 5545969, 10077696, 18312388, 33275819, 60466176, 109874333, 199654914, 362797056, 659246001
Offset: 0

Views

Author

Keywords

Crossrefs

Cf. powers of cube root of k rounded down: A017979 (k=2), A017982 (k=3), A017985 (k=4), A017988 (k=5), this sequence (k=6), A017994 (k=7), A018000 (k=9), A018003 (k=10), A018006 (k=11), A018009 (k=12), A018012 (k=13), A018015 (k=14), A018018 (k=15), A018021 (k=16), A018024 (k=17), A018027 (k=18), A018030 (k=19), A018033 (k=20), A018036 (k=21), A018039 (k=22), A018042 (k=23), A018045 (k=24).

Programs

  • Magma
    [Floor(6^(n/3)): n in [0..50]]; // Vincenzo Librandi, Jan 06 2014
  • Mathematica
    Table[Floor[6^(n/3)], {n, 0, 40}] (* Vincenzo Librandi, Jan 06 2014 *)
    Floor[CubeRoot[6]^Range[0,40]]

Extensions

More terms from Vincenzo Librandi, Jan 06 2014

A017994 Powers of cube root of 7 rounded down.

Original entry on oeis.org

1, 1, 3, 7, 13, 25, 49, 93, 179, 343, 656, 1255, 2401, 4592, 8785, 16807, 32150, 61501, 117649, 225054, 430513, 823543, 1575381, 3013595, 5764801, 11027667, 21095169, 40353607, 77193673, 147666184, 282475249, 540355712, 1033663291, 1977326743, 3782489985
Offset: 0

Views

Author

Keywords

Crossrefs

Cf. powers of cube root of k rounded down: A017979 (k=2), A017982 (k=3), A017985 (k=4), A017988 (k=5), A017991 (k=6), this sequence (k=7), A018000 (k=9), A018003 (k=10), A018006 (k=11), A018009 (k=12), A018012 (k=13), A018015 (k=14), A018018 (k=15), A018021 (k=16), A018024 (k=17), A018027 (k=18), A018030 (k=19), A018033 (k=20), A018036 (k=21), A018039 (k=22), A018042 (k=23), A018045 (k=24).

Programs

Extensions

More terms from Vincenzo Librandi, Jan 06 2014

A018000 Powers of cube root of 9 rounded down.

Original entry on oeis.org

1, 2, 4, 9, 18, 38, 81, 168, 350, 729, 1516, 3154, 6561, 13647, 28387, 59049, 122826, 255490, 531441, 1105441, 2299411, 4782969, 9948976, 20694704, 43046721, 89540787, 186252344, 387420489, 805867091, 1676271101, 3486784401, 7252803826, 15086439912
Offset: 0

Views

Author

Keywords

Crossrefs

Cf. powers of cube root of k rounded down: A017979 (k=2), A017982 (k=3), A017985 (k=4), A017988 (k=5), A017991 (k=6), A017994 (k=7), this sequence (k=9), A018003 (k=10), A018006 (k=11), A018009 (k=12), A018012 (k=13), A018015 (k=14), A018018 (k=15), A018021 (k=16), A018024 (k=17), A018027 (k=18), A018030 (k=19), A018033 (k=20), A018036 (k=21), A018039 (k=22), A018042 (k=23), A018045 (k=24).

Programs

Extensions

More terms from Vincenzo Librandi, Jan 06 2014

A018003 Powers of cube root of 10 rounded down.

Original entry on oeis.org

1, 2, 4, 10, 21, 46, 100, 215, 464, 1000, 2154, 4641, 10000, 21544, 46415, 100000, 215443, 464158, 1000000, 2154434, 4641588, 10000000, 21544346, 46415888, 100000000, 215443469, 464158883, 1000000000, 2154434690, 4641588833, 10000000000, 21544346900
Offset: 0

Views

Author

Keywords

Crossrefs

Cf. powers of cube root of k rounded down: A017979 (k=2), A017982 (k=3), A017985 (k=4), A017988 (k=5), A017991 (k=6), A017994 (k=7), A018000 (k=9),this sequence (k=10), A018006 (k=11), A018009 (k=12), A018012 (k=13), A018015 (k=14), A018018 (k=15), A018021 (k=16), A018024 (k=17), A018027 (k=18), A018030 (k=19), A018033 (k=20), A018036 (k=21), A018039 (k=22), A018042 (k=23), A018045 (k=24).

Programs

Formula

a(n) = floor( 10^(n/3) ).

Extensions

More terms from Vincenzo Librandi, Jan 06 2014

A018009 Powers of cube root of 12 rounded down.

Original entry on oeis.org

1, 2, 5, 12, 27, 62, 144, 329, 754, 1728, 3956, 9057, 20736, 47473, 108687, 248832, 569683, 1304248, 2985984, 6836196, 15650983, 35831808, 82034361, 187811804, 429981696, 984412342, 2253741658, 5159780352, 11812948114, 27044899907, 61917364224
Offset: 0

Views

Author

Keywords

Crossrefs

Cf. powers of cube root of k rounded down: A017979 (k=2), A017982 (k=3), A017985 (k=4), A017988 (k=5), A017991 (k=6), A017994 (k=7), A018000 (k=9), A018003 (k=10), A018006 (k=11), this sequence (k=12), A018012 (k=13), A018015 (k=14), A018018 (k=15), A018021 (k=16), A018024 (k=17), A018027 (k=18), A018030 (k=19), A018033 (k=20), A018036 (k=21), A018039 (k=22), A018042 (k=23), A018045 (k=24).

Programs

Extensions

More terms from Vincenzo Librandi, Jan 06 2014
Showing 1-10 of 25 results. Next