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

A221942 a(n) = floor(sqrt(5*2^n)).

Original entry on oeis.org

2, 3, 4, 6, 8, 12, 17, 25, 35, 50, 71, 101, 143, 202, 286, 404, 572, 809, 1144, 1619, 2289, 3238, 4579, 6476, 9158, 12952, 18317, 25905, 36635, 51810, 73271, 103621, 146542, 207243, 293085, 414486, 586171, 828972, 1172343, 1657944, 2344687, 3315888, 4689374, 6631776, 9378748, 13263553, 18757497, 26527107
Offset: 0

Views

Author

N. J. A. Sloane, Feb 01 2013

Keywords

Comments

Theorem 3 of Dubickas implies that infinitely many terms of this sequence are divisible by 2 or 3 (and hence infinitely many composites). - Charles R Greathouse IV, Feb 04 2016

References

  • Artūras Dubickas, Prime and composite integers close to powers of a number, Monatsh. Math. 158:3 (2009), pp. 271-284.

Crossrefs

Programs

A221946 a(n) = floor(sqrt(2*7^n)).

Original entry on oeis.org

1, 3, 9, 26, 69, 183, 485, 1283, 3395, 8983, 23768, 62886, 166380, 440202, 1164665, 3081415, 8152659, 21569910, 57068618, 150989371, 399480328, 1056925602, 2796362297, 7398479214, 19574536080, 51789354498, 137021752562, 362525481486, 959152267937, 2537678370405, 6714065875561, 17763748592841
Offset: 0

Views

Author

N. J. A. Sloane, Feb 01 2013

Keywords

Crossrefs

Programs

A017920 Powers of sqrt(5) rounded to nearest integer.

Original entry on oeis.org

1, 2, 5, 11, 25, 56, 125, 280, 625, 1398, 3125, 6988, 15625, 34939, 78125, 174693, 390625, 873464, 1953125, 4367320, 9765625, 21836601, 48828125, 109183007, 244140625, 545915034, 1220703125, 2729575168
Offset: 0

Views

Author

Keywords

Crossrefs

Programs

A017921 Powers of sqrt(5) rounded up.

Original entry on oeis.org

1, 3, 5, 12, 25, 56, 125, 280, 625, 1398, 3125, 6988, 15625, 34939, 78125, 174693, 390625, 873465, 1953125, 4367321, 9765625, 21836602, 48828125, 109183007, 244140625, 545915034, 1220703125, 2729575168
Offset: 0

Views

Author

Keywords

Examples

			sqrt(5)^3 = 11.18033988749895... so a(3) = 12.
sqrt(5)^4 = 25, so a(4) = 25.
sqrt(5)^5 = 55.90169943749474241... so a(5) = 56.
		

Crossrefs

Programs

A221944 Floor(sqrt(2*3^n)).

Original entry on oeis.org

1, 2, 4, 7, 12, 22, 38, 66, 114, 198, 343, 595, 1030, 1785, 3092, 5357, 9278, 16071, 27835, 48213, 83507, 144639, 250523, 433919, 751571, 1301759, 2254713, 3905277, 6764139, 11715833, 20292418, 35147500, 60877256, 105442501, 182631769, 316327504, 547895309, 948982513, 1643685929, 2846947541, 4931057788
Offset: 0

Views

Author

N. J. A. Sloane, Feb 01 2013

Keywords

Crossrefs

Programs

A221945 a(n) = floor(sqrt(2*5^n)).

Original entry on oeis.org

1, 3, 7, 15, 35, 79, 176, 395, 883, 1976, 4419, 9882, 22097, 49410, 110485, 247052, 552427, 1235264, 2762135, 6176323, 13810679, 30881617, 69053396, 154408088, 345266983, 772040444, 1726334915, 3860202221, 8631674575, 19301011109, 43158372875, 96505055547, 215791864375, 482525277735
Offset: 0

Views

Author

N. J. A. Sloane, Feb 01 2013

Keywords

Comments

Floor of norm of (1 + i) * (1 + 2i)^n. - Jon Perry, Dec 06 2013

Crossrefs

Programs

A255216 a(n) = floor((3/sqrt(5))^n).

Original entry on oeis.org

1, 1, 1, 2, 3, 4, 5, 7, 10, 14, 18, 25, 34, 45, 61, 82, 110, 147, 198, 266, 357, 479, 642, 862, 1156, 1552, 2082, 2793, 3748, 5028, 6746, 9051, 12143, 16292, 21859, 29327, 39346, 52788, 70823, 95019, 127482, 171035, 229468, 307863, 413042, 554155, 743477, 997479, 1338258
Offset: 0

Views

Author

Kival Ngaokrajang, Feb 25 2015

Keywords

Comments

a(n) is the total length (rounded down to integer) of the elements of a variant of a 3-element fractal after n iterations, starting with 3 elements, each of whose length is 1/3 (in some units). See illustration in the links.

Crossrefs

Cf. A017919.

Programs

  • Mathematica
    With[{c=3/Sqrt[5]},Table[Floor[c^n],{n,0,50}]] (* Harvey P. Dale, Oct 23 2023 *)
  • PARI
    {for(n=0,100,a=floor((3/sqrt(5))^n);print1(a,", "))}

Formula

a(n) = floor((3/sqrt(5))^n).

A255616 Table read by antidiagonals, T(n,k) = floor(sqrt(k^n)), n >= 0, k >=1.

Original entry on oeis.org

1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 2, 3, 2, 1, 1, 2, 4, 5, 4, 1, 1, 2, 5, 8, 9, 5, 1, 1, 2, 6, 11, 16, 15, 8, 1, 1, 2, 7, 14, 25, 32, 27, 11, 1, 1, 3, 8, 18, 36, 55, 64, 46, 16, 1, 1, 3, 9, 22, 49, 88, 125, 128, 81, 22, 1, 1, 3, 10, 27, 64, 129, 216, 279, 256, 140, 32, 1, 1, 3, 11, 31, 81, 181, 343, 529, 625, 512, 243, 45, 1
Offset: 0

Views

Author

Kival Ngaokrajang, Feb 28 2015

Keywords

Examples

			See table in the links.
		

Crossrefs

Programs

  • Mathematica
    T[n_, k_] := Floor[Sqrt[k^n]]; Table[T[k, n + 1 - k], {n, 0, 15}, {k, 0, n}] (* G. C. Greubel, Dec 30 2017 *)
  • PARI
    {for(i=1,20,for(n=0,i-1,a=floor(sqrt((i-n)^n));print1(a,", ")))}

Formula

T(n,k) = floor(sqrt(k^n)), n >= 0, k >=1.

Extensions

Terms a(81) onward added by G. C. Greubel, Dec 30 2017

A221943 Floor(sqrt(7*2^n)).

Original entry on oeis.org

2, 3, 5, 7, 10, 14, 21, 29, 42, 59, 84, 119, 169, 239, 338, 478, 677, 957, 1354, 1915, 2709, 3831, 5418, 7662, 10836, 15325, 21673, 30651, 43347, 61303, 86695, 122606, 173391, 245213, 346783, 490426, 693567, 980853, 1387135, 1961706, 2774271, 3923412, 5548542, 7846824, 11097085, 15693648, 22194170, 31387297
Offset: 0

Views

Author

N. J. A. Sloane, Feb 01 2013

Keywords

Comments

Theorem 3 of Dubickas implies that infinitely many terms of this sequence are divisible by 2 or 3 (and hence infinitely many composites). - Charles R Greathouse IV, Feb 04 2016

References

  • Artūras Dubickas, Prime and composite integers close to powers of a number, Monatsh. Math. 158:3 (2009), pp. 271-284.

Crossrefs

Programs

  • Mathematica
    Floor[Sqrt[7*2^Range[0,50]]] (* Harvey P. Dale, Apr 11 2018 *)
  • PARI
    a(n)=sqrtint(7<Charles R Greathouse IV, Apr 18 2013
Showing 1-9 of 9 results.