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.

A275718 Numbers n for which A003961(n) < A003961(n-1).

Original entry on oeis.org

5, 7, 9, 10, 11, 13, 17, 19, 21, 22, 23, 25, 28, 29, 31, 33, 34, 37, 41, 43, 46, 47, 49, 51, 53, 55, 57, 58, 59, 61, 65, 67, 69, 71, 73, 76, 77, 79, 82, 83, 85, 89, 91, 93, 94, 97, 99, 101, 103, 105, 106, 107, 109, 111, 113, 115, 118, 121, 127, 129, 131, 133, 134, 136, 137, 139, 141, 142, 145, 148, 149, 151, 153, 154, 155
Offset: 1

Views

Author

Antti Karttunen, Aug 07 2016

Keywords

Comments

One more than the positions of descents in permutation A048673.

Crossrefs

One more than A275722.
Complement: A275717 (apart from 1 which is in neither sequence).

Programs

  • Mathematica
    f[n_] := Times @@ Map[Prime[PrimePi@ First[#] + 1]^Last[#] &, FactorInteger@ n]; Select[Range@ 155, f[# - 1] > f@ # &] (* Michael De Vlieger, Aug 07 2016 *)