A347837 a(n) = 32*(n + floor(n/3)) - 11; third column of A347834.
21, 53, 117, 149, 181, 245, 277, 309, 373, 405, 437, 501, 533, 565, 629, 661, 693, 757, 789, 821, 885, 917, 949, 1013, 1045, 1077, 1141, 1173, 1205, 1269, 1301, 1333, 1397, 1429, 1461, 1525, 1557, 1589, 1653, 1685
Offset: 1
Links
- Paolo Xausa, Table of n, a(n) for n = 1..10000
- Index entries for linear recurrences with constant coefficients, signature (1,0,1,-1).
Programs
-
Magma
[32*(n + Floor(n/3)) - 11 : n in [1..60]]; // Wesley Ivan Hurt, Oct 10 2021
-
Maple
seq(32*(n + floor(n/3)) - 11, n=1..40); # Peter Luschny, Oct 10 2021
-
Mathematica
A347837[n_] := 32*(n + Floor[n/3]) - 11; Array[A347837, 50] (* or *) LinearRecurrence[{1, 0, 1, -1}, {21, 53, 117, 149}, 50] (* Paolo Xausa, Feb 27 2024 *)