A259614 Numbers congruent to {17,29} mod 36.
17, 29, 53, 65, 89, 101, 125, 137, 161, 173, 197, 209, 233, 245, 269, 281, 305, 317, 341, 353, 377, 389, 413, 425, 449, 461, 485, 497, 521, 533, 557, 569, 593, 605, 629, 641, 665, 677, 701, 713, 737, 749, 773, 785, 809, 821, 845, 857, 881, 893, 917, 929, 953
Offset: 1
Links
- G. C. Greubel, Table of n, a(n) for n = 1..2000
- Index entries for linear recurrences with constant coefficients, signature (1,1,-1).
Programs
-
Magma
[ n : n in [1..1000] | n mod 36 in [17, 29] ] // Vincenzo Librandi Jul 01 2015
-
Mathematica
Select[Range[1000], MemberQ[{17, 29}, Mod[#, 36]] &] (* Vincenzo Librandi, Jul 01 2015 *)
Formula
G.f.: x*(17+12*x+7*x^2) / ( (1+x)*(x-1)^2 ). - R. J. Mathar, Jul 26 2015
E.g.f.: 7 + (18*x - 4)*exp(x) - 3*exp(-x). - David Lovler, Sep 10 2022
Comments