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

A049478
Record values in A346778.
4
0, 1, 4, 6, 12, 22, 27, 62, 64, 84, 104, 106, 108, 114, 132, 142, 178, 179, 186, 213, 216, 247, 273, 322, 341, 357, 358, 449, 458, 462, 470, 478, 482, 495, 499, 502, 581, 585, 597, 598, 623, 662, 672, 681, 735, 772, 778, 794, 818, 827, 851, 864
OFFSET
1,3
COMMENTS
Record values of the least g >= 1 such that the first g terms of row n of A088643 [start with n and always append the largest k < n not yet used such that n+k is a prime] constitute the set {n, n-1, ..., n-g+1}, and the next (i.e., (g+1)-th) term of that row equals n-g. - M. F. Hasler, Aug 04 2021
PROG
(PARI) {print1(m=0); for( n=1, oo, my( r=A088643_row(n)); for( g=1, #r-1, if( Set(r[1..g]) == [n-g+1..n] && r[g+1]==n-g, g > m && print1(", "m=g); break)))} \\ M. F. Hasler, Aug 04 2021
CROSSREFS
KEYWORD
nonn,nice
EXTENSIONS
Revised by Sean A. Irvine, Aug 03 2021
STATUS
approved