OFFSET
1,2
COMMENTS
a(n) is a strong divisibility sequence; i.e., gcd(a(h),a(k)) = a(gcd(h,k)). Conjecture: there is no upper bound for the number of consecutive equal digits among numbers in this sequence, as suggested, for example, by 34 straight 1's in a(96) and 38 straight 6's in a(97).
EXAMPLE
See Example in A327322.
MATHEMATICA
c[poly_] := If[Head[poly] === Times, Times @@ DeleteCases[(#1 (Boole[MemberQ[#1, x] || MemberQ[#1, y] || MemberQ[#1, z]] &) /@Variables /@ #1 &)[List @@ poly], 0], poly];
r = Sqrt[5]; f[x_, n_] := c[Factor[Expand[(r x + r)^n - (r x - 1/r)^n]]];
Flatten[Table[CoefficientList[f[x, n], x], {n, 1, 12}]]; (* A327322 *)
Table[f[x, n] /. x -> 0, {n, 1, 30}] (* A329011 *)
Table[f[x, n] /. x -> 1, {n, 1, 30}] (* A329012 *)
Table[f[x, n] /. x -> 2, {n, 1, 30}] (* A329013 *)
(* Peter J. C. Moses, Nov 01 2019 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Nov 23 2019
STATUS
approved