OFFSET
1,3
COMMENTS
Row numbers of Pascal's Triangle where none of the binomial coefficients in that row is divisible by 5. - Thomas M. Green, Apr 02 2013
LINKS
Index entries for linear recurrences with constant coefficients, signature (1,0,0,5,-5).
FORMULA
a(n) = a(n-1)+5*a(n-4)-5*a(n-5). G.f.: x^2*(x+1)*(x^2+1) / ((x-1)*(5*x^4-1)). [Colin Barker, Feb 01 2013]
EXAMPLE
For n = 7, a(7) = 14 and the binomial coefficients in the 14th row of Pascal's Triangle are 1 14 91 364 1001 2002 3003 3432 3003 2002 1001 364 91 14 1 and none of the elements in that row is divisible by 5. - Thomas M. Green, Apr 05 2013
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Jan 25 2011
STATUS
approved