A112374 Let T(n) = A000078(n+2), n >= 1; a(n) = smallest k such that n divides T(k).
1, 3, 6, 4, 6, 9, 8, 5, 9, 13, 20, 9, 10, 8, 6, 10, 53, 9, 48, 28, 18, 20, 35, 18, 76, 10, 9, 8, 7, 68, 20, 15, 20, 53, 30, 9, 58, 48, 78, 28, 19, 18, 63, 20, 68, 35, 28, 18, 46, 108, 76, 10, 158, 9, 52, 8, 87, 133, 18, 68, 51, 20, 46, 35, 78, 20, 17, 138, 35, 30, 230, 20, 72, 58, 76
Offset: 1
Links
- J. L. Brenner, Linear Recurrence Relations, Amer. Math. Monthly, Vol. 61 (1954), 171-173.
- T. D. Noe and J. V. Post, Primes in Fibonacci n-step and Lucas n-Step Sequences, J. Integer Seq. 8, Article 05.4.4, 2005.
- Eric Weisstein's World of Mathematics, Tetranacci Number.
- Eric Weisstein's World of Mathematics, Fibonacci n-Step Number.
Programs
-
Mathematica
n=4; Table[a=Join[{1}, Table[0, {n-1}]]; k=0; While[k++; s=Mod[Plus@@a, i]; a=RotateLeft[a]; a[[n]]=s; s!=0]; k, {i, 100}] (* T. D. Noe, Dec 05 2005 *)
Formula
a(n) = Min{k: n | A000078(k)}.
Extensions
Corrected by T. D. Noe, Dec 05 2005
Comments