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

A255415
Row 5 of Ludic array A255127.
5
11, 55, 103, 151, 203, 251, 299, 343, 391, 443, 491, 539, 587, 631, 683, 731, 779, 827, 877, 923, 971, 1019, 1067, 1117, 1165, 1211, 1259, 1307, 1357, 1405, 1453, 1499, 1547, 1597, 1645, 1693, 1741, 1787, 1837, 1885, 1933, 1981, 2033, 2077, 2125, 2173, 2221, 2273, 2321, 2365, 2413, 2461, 2513, 2561, 2609, 2653, 2701, 2753, 2801, 2849, 2897, 2941, 2993, 3041
OFFSET
1,1
COMMENTS
First differences are periodic with period length 48, cf. formulas. - M. F. Hasler, Nov 17 2024
LINKS
FORMULA
a(n) = A255407(A084969(n)).
a(n) = a(n-48) + 2310 = a((n-1)%48 + 1) + [(n-1)/48]*2310, where % = mod = remainder operator, and [.] = floor. - M. F. Hasler, Nov 10 2024
PROG
(Scheme) (define (A255415 n) (A255127bi 5 n)) ;; Code for A255127bi given in A255127.
(PARI) L255415=[n*337\14*2+7|n<-[0..47]]+digits(54129937554927109457534, 3)*2
apply( A255415(n)=n--\48*2310+L255415[n%48+1], [1..66]) \\ M. F. Hasler, Nov 10 2024
CROSSREFS
Row 5 of A255127. See A255414 for row 4 and A255416 for row 6.
Sequence in context: A348025 A050900 A246406 * A153449 A047649 A010927
KEYWORD
nonn
AUTHOR
Antti Karttunen, Feb 22 2015
STATUS
approved