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.

Previous Showing 11-13 of 13 results.

A348441 Indices of records in A088177.

Original entry on oeis.org

1, 3, 5, 7, 15, 17, 19, 34, 45, 47, 83, 85, 165, 169, 171, 181, 183, 193, 195, 205, 207, 533, 535, 561, 563, 585, 587, 784, 786, 1040, 1042, 1068, 1070, 1096, 1098, 1126, 1128, 1150, 1152, 1932, 1934, 1986, 1988, 2022, 2024, 2062, 2064, 2090, 2092, 2118, 2120, 2146, 2148, 2178, 2180, 2206, 2208
Offset: 1

Views

Author

N. J. A. Sloane, Oct 21 2021

Keywords

Crossrefs

Programs

  • Mathematica
    Block[{a, c, m = 1, n}, a = {1}~Join~Reap[Do[n = 1; While[IntegerQ[c[m n]], n++]; Sow[n]; Set[c[m n], i]; m = n, {i, 3000}]][[-1, -1]]; Map[FirstPosition[a, #][[1]] &, Union@ FoldList[Max, a]]] (* Michael De Vlieger, Oct 21 2021 *)
  • Python
    from itertools import islice
    def A348441(): # generator of terms
        yield 1
        c, p, a, i = 1, {1}, 1, 2
        while True:
            n, na = 1, a
            while na in p:
                n += 1
                na += a
            p.add(na)
            a = n
            i += 1
            if c < n:
                c = n
                yield i
    A348441_list = list(islice(A348441(),100)) # Chai Wah Wu, Oct 21 2021

A317025 a(n) = lcm(A317024(n), A317024(n+1)).

Original entry on oeis.org

1, 2, 6, 3, 4, 12, 15, 5, 7, 14, 10, 20, 28, 21, 24, 8, 9, 18, 22, 11, 13, 26, 30, 60, 36, 45, 35, 42, 66, 33, 39, 52, 44, 55, 40, 56, 63, 72, 88, 77, 70, 90, 99, 110, 130, 65, 80, 16, 17, 34, 38, 19, 23, 46, 50, 25, 27, 54, 58, 29, 31, 62, 32, 96, 48, 112, 84
Offset: 1

Views

Author

Rémy Sigrist, Jul 19 2018

Keywords

Comments

All terms are distinct.
This sequence has similarities with A088178.

Examples

			a(7) = lcm(A317024(7), A317024(8)) = lcm(3, 5) = 15.
		

Crossrefs

Programs

  • PARI
    See Links section.

A341490 Numbers k such that A088177(k) = 1.

Original entry on oeis.org

1, 2, 6, 18, 46, 84, 170, 182, 194, 206, 534, 562, 586, 785, 1041, 1069, 1097, 1127, 1151, 1933, 1987, 2023, 2063, 2091, 2119, 2147, 2179, 2207, 3930, 3966, 4002, 4038, 4074, 4110, 4220, 6012, 8503, 8543, 8583, 8623, 8815, 8877, 8947, 9013, 9061, 9109, 9157
Offset: 1

Views

Author

Rémy Sigrist, Feb 13 2021

Keywords

Comments

This sequence is infinite, and A088178 is a permutation of the positive integers.

Examples

			A088177(6) = 1, so 6 belongs to this sequence.
A088177(7) = 5, so 7 does not belong to this sequence.
		

Crossrefs

Previous Showing 11-13 of 13 results.