OFFSET
1,3
COMMENTS
Numbers m such that m^2 - m is divisible by 19.
LINKS
David Lovler, Table of n, a(n) for n = 1..10000
Index entries for linear recurrences with constant coefficients, signature (1,1,-1).
FORMULA
a(n+1) = Sum_k>=0 {A030308(n,k)*b(k)} with b(0)=1 and b(k)=19*2^(k-1) for k>0. - Philippe Deléham, Oct 19 2011
G.f.: x^2*(1+18*x)/((1-x)^2*(1+x)). - Colin Barker, Apr 09 2012
a(n) = a(n-1) + a(n-2) - a(n-3). - Colin Barker, Apr 09 2012
From Stefano Spezia, Feb 01 2020: (Start)
a(n) = (1/4)*(38*n - 55 - 17*(-1)^n).
E.g.f.: (19/2)*(x*(cosh(x) + sinh(x)) - sinh(x)) - 18*(cosh(x) - 1). (End)
MATHEMATICA
Select[Range[0, 600], MemberQ[{0, 1}, Mod[#, 19]]&] (* Harvey P. Dale, Feb 11 2019 *)
PROG
(Magma) [n : n in [0..600] | n mod 19 in [0, 1]]; // Vincenzo Librandi, Feb 04 2020
(PARI) a(n) = (1/4)*(38*n - 55 - 17*(-1)^n); \\ David Lovler, Jul 25 2022
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Aug 23 2009
STATUS
approved