login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A275722
Numbers n for which A003961(n+1) < A003961(n).
5
4, 6, 8, 9, 10, 12, 16, 18, 20, 21, 22, 24, 27, 28, 30, 32, 33, 36, 40, 42, 45, 46, 48, 50, 52, 54, 56, 57, 58, 60, 64, 66, 68, 70, 72, 75, 76, 78, 81, 82, 84, 88, 90, 92, 93, 96, 98, 100, 102, 104, 105, 106, 108, 110, 112, 114, 117, 120, 126, 128, 130, 132, 133, 135, 136, 138, 140, 141, 144, 147, 148, 150, 152, 153, 154
OFFSET
1,1
COMMENTS
Positions of the descents in permutation A048673.
LINKS
MATHEMATICA
f[n_] := Times @@ Map[Prime[PrimePi@ First[#] + 1]^Last[#] &, FactorInteger@ n]; Select[Range@ 154, f@ # > f[# + 1] &] (* Michael De Vlieger, Aug 07 2016 *)
PROG
(Scheme, with Antti Karttunen's IntSeq-library)
(define A275722 (MATCHING-POS 1 1 (lambda (n) (< (A003961 (+ 1 n)) (A003961 n)))))
CROSSREFS
One less than A275718.
Complement: A275721.
Sequence in context: A067013 A141607 A071070 * A047820 A248807 A034878
KEYWORD
nonn
AUTHOR
Antti Karttunen, Aug 07 2016
STATUS
approved