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

A113742
Generalized Mancala solitaire (A002491); to get n-th term, start with n and successively round up to next 5 multiples of n-1, n-2, ..., 1, for n>=1.
11
1, 6, 16, 30, 48, 72, 102, 132, 168, 210, 258, 318, 360, 418, 492, 540, 622, 714, 780, 870, 972, 1054, 1174, 1260, 1392, 1488, 1590, 1714, 1848, 2022, 2118, 2292, 2398, 2580, 2718, 2878, 3054, 3234, 3360, 3570, 3754, 3948, 4114, 4318, 4498, 4710, 4932
OFFSET
1,2
MATHEMATICA
f[n_] := Fold[ #2*Ceiling[ #1/#2 + 4] &, n, Reverse@Range[n - 1]]; Array[f, 47]
CROSSREFS
Cf. {k=-1..12} A000012, A002491, A000960 (Flavius Josephus's sieve), A112557, A112558, A113743, A113744, A113745, A113746, A113747, A113748; det. A113749.
Sequence in context: A350011 A168472 A054000 * A102214 A301679 A115007
KEYWORD
nonn
AUTHOR
STATUS
approved