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”).

A333231
Positions of weak descents in the sequence of differences between primes.
15
2, 4, 6, 9, 11, 12, 15, 16, 18, 19, 21, 24, 25, 27, 30, 32, 34, 36, 37, 39, 40, 42, 44, 46, 47, 48, 51, 53, 54, 55, 56, 58, 59, 62, 63, 66, 68, 72, 73, 74, 77, 80, 82, 84, 87, 88, 91, 92, 94, 97, 99, 101, 102, 103, 106, 107, 108, 110, 111, 112, 114, 115, 118
OFFSET
1,1
COMMENTS
Partial sums of A333253.
FORMULA
Numbers k such that prime(k+2) - 2*prime(k+1) + prime(k) >= 0.
EXAMPLE
The prime gaps split into the following strictly increasing subsequences: (1,2), (2,4), (2,4), (2,4,6), (2,6), (4), (2,4,6), (6), (2,6), (4), (2,6), (4,6,8), (4), (2,4), (2,4,14), ...
MATHEMATICA
Accumulate[Length/@Split[Differences[Array[Prime, 100]], #1<#2&]]//Most
- or -
Select[Range[100], Prime[#+1]-Prime[#]>=Prime[#+2]-Prime[#+1]&]
CROSSREFS
The version for the Kolakoski sequence is A025505.
The version for equal differences is A064113.
The version for strict ascents is A258025.
The version for strict descents is A258026.
The version for distinct differences is A333214.
The version for weak ascents is A333230.
First differences are A333253 (if the first term is 0).
Prime gaps are A001223.
Weakly decreasing runs of compositions in standard order are A124765.
Strictly increasing runs of compositions in standard order are A124768.
Runs of prime gaps with nonzero differences are A333216.
Sequence in context: A157936 A338348 A184978 * A227132 A024978 A191194
KEYWORD
nonn
AUTHOR
Gus Wiseman, Mar 18 2020
STATUS
approved