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.

A246352 Numbers n such that A048673(n) >= n.

Original entry on oeis.org

1, 2, 3, 4, 6, 8, 9, 10, 12, 14, 15, 16, 18, 20, 21, 24, 25, 26, 27, 28, 30, 32, 33, 35, 36, 39, 40, 42, 44, 45, 48, 49, 50, 52, 54, 56, 57, 60, 63, 64, 66, 68, 69, 70, 72, 75, 76, 78, 80, 81, 84, 88, 90, 91, 92, 93, 96, 98, 99, 100, 102, 104, 105, 108, 110, 112, 114, 116, 117, 120, 124, 125, 126, 128, 130, 132
Offset: 1

Views

Author

Antti Karttunen, Aug 24 2014

Keywords

Crossrefs

Complement: A246351
Union of A246282 and A048674.
Subsequence: A029744 (gives the positions of records in A048673).
Cf. A246372.

Programs

  • PARI
    default(primelimit, 2^22);
    A003961(n) = my(f = factor(n)); for (i=1, #f~, f[i, 1] = nextprime(f[i, 1]+1)); factorback(f); \\ From Michel Marcus
    A048673(n) = (A003961(n)+1)/2;
    isA246352(n) = (A048673(n) >= n);
    n = 0; i = 0; while(i < 10000, n++; if(isA246352(n), i++; write("b246352.txt", i, " ", n)));
    (Scheme, with Antti Karttunen's IntSeq-library)
    (define A246352 (MATCHING-POS 1 1 (lambda (n) (>= (A048673 n) n))))