OFFSET
1,1
COMMENTS
The only semiprime terms are a(2) = 14 and a(n) such that (10^(n-1) + 3)/7 is a prime. - Jon E. Schoenfield, Jan 27 2024
LINKS
Index entries for linear recurrences with constant coefficients, signature (11,-10,-1,11,-10).
FORMULA
a(n) = (floor(10^(n-1)/7) + 1)*7.
a(n) = 10^(n-1) + A033940(n+2). - Amiram Eldar, Jan 27 2024
G.f.: 7*x*(1 - 9*x + 3*x^2 - x^3 - 3*x^4)/((1 - x)*(1 + x)*(1 - 10*x)*(1 - x + x^2)). - Stefano Spezia, Jan 28 2024
EXAMPLE
a(3) = 105 = 7*15.
MATHEMATICA
a[n_] := 10^(n - 1) + {6, 4, 5, 1, 3, 2}[[Mod[n, 6, 1]]]; Array[a, 30]
(* or *)
LinearRecurrence[{11, -10, -1, 11, -10}, {7, 14, 105, 1001, 10003, 100002}, 30] (* Amiram Eldar, Jan 27 2024 *)
Table[10^n+7-PowerMod[10, n, 7], {n, 0, 20}] (* Harvey P. Dale, Jan 13 2025 *)
CROSSREFS
KEYWORD
nonn,easy,base
AUTHOR
J. Lowell, Jan 25 2024
STATUS
approved