OFFSET
1,1
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..1000
Index entries for linear recurrences with constant coefficients, signature (1,0,0,1,-1).
FORMULA
G.f.: x*(11+28*x+34*x^2+4*x^3+23*x^4)/(1-x-x^4+x^5). - Colin Barker, Jan 23 2012
a(n) = (50*n-12*i^(n*(n-1))-9*(-1)^n-25)/2, where i=sqrt(-1). - Bruno Berselli, Feb 23 2012
MATHEMATICA
Table[100n+k, {n, 0, 20}, {k, {11, 39, 73, 77}}]//Flatten (* or *) LinearRecurrence[ {1, 0, 0, 1, -1}, {11, 39, 73, 77, 111}, 80] (* Harvey P. Dale, Jul 05 2019 *)
PROG
(Haskell)
import Data.List (findIndices)
a045801 n = a045801_list !! (n-1)
a045801_list = findIndices (`elem` [11, 39, 73, 77]) $ cycle [0..99]
-- Reinhard Zumkeller, Jan 23 2012
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
EXTENSIONS
More terms from Erich Friedman.
STATUS
approved