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

A184909 a(n) = n + floor(n*s/r) + floor(n*t/r), where r=2^(1/5), s=r^2, t=r^3.

Original entry on oeis.org

3, 6, 9, 13, 16, 19, 24, 27, 30, 34, 37, 40, 44, 48, 51, 55, 58, 61, 65, 68, 72, 76, 79, 82, 85, 89, 93, 96, 100, 103, 106, 110, 113, 117, 121, 124, 127, 131, 134, 137, 142, 145, 148, 152, 155, 158, 162, 166, 169, 172, 176, 179, 182, 187, 190, 193, 197, 200, 203, 207
Offset: 1

Views

Author

Clark Kimberling, Jan 25 2011

Keywords

Crossrefs

Programs

  • Mathematica
    r = 2^(1/5); s = r^2; t = r^3;
    a[n_] := n + Floor[n*s/r] + Floor[n*t/r];
    b[n_] := n + Floor[n*r/s] + Floor[n*t/s];
    c[n_] := n + Floor[n*r/t] + Floor[n*s/t];
    Table[a[n], {n, 1, 120}]  (* A184909 *)
    Table[b[n], {n, 1, 120}]  (* A184910 *)
    Table[c[n], {n, 1, 120}]  (* A184911 *)
    (* Clark Kimberling, Jan 18 2025 *)

Extensions

Definition in name corrected by Clark Kimberling, Jan 18 2025

A184910 a(n) = n + floor(n*r/s) + floor(n*t/s) with r = 2^(1/5), s = r^2, t = r^3.

Original entry on oeis.org

2, 5, 8, 11, 14, 17, 21, 23, 26, 29, 32, 35, 38, 42, 45, 47, 50, 53, 56, 59, 63, 66, 69, 71, 74, 77, 81, 84, 87, 90, 92, 95, 98, 102, 105, 108, 111, 114, 116, 119, 123, 126, 129, 132, 135, 138, 140, 144, 147, 150, 153, 156, 159, 163, 165, 168, 171, 174, 177, 180, 184
Offset: 1

Views

Author

Clark Kimberling, Jan 25 2011

Keywords

Crossrefs

Extensions

Name correted by Alois P. Heinz, Jan 19 2025
Showing 1-2 of 2 results.