A386394 a(n) = (5^(2*n) + 3*2^(5*n-2))/7.
7, 199, 5743, 168151, 4990207, 149920999, 4553331343, 139603087351, 4314710904607, 134256051681799, 4200826222176943, 132042253318646551, 4165747461421299007, 131813802646096802599, 4180788781690478542543, 132853918439479834845751, 4228042325697967752173407
Offset: 1
References
- James J. Tattersall, Elementary Number Theory in Nine Chapters, Cambridge University Press, 1999, Exercise 5.1.24 on page 158.
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..200
- Index entries for linear recurrences with constant coefficients, signature (57,-800).
Programs
-
Magma
[(5^(2*n)+3*2^(5*n-2))/7 : n in [1..20]]; // Vincenzo Librandi, Jul 21 2025
-
Mathematica
a[n_]:=(5^(2n)+3*2^(5n-2))/7; Array[a,17]
Comments