A318970 a(1) = 3; for n > 1, a(n) = 2^(a(n-1) - 1) + 5.
3, 9, 261, 1852673427797059126777135760139006525652319754650249024631321344126610074238981
Offset: 1
Keywords
Links
- Max Alekseyev, Iterations of 2^(n-1)+5: the strong law of small numbers, or something bigger?, MathOverflow, 2016.
Programs
-
Magma
[n le 1 select 3 else 2^(Self(n-1)-1)+5: n in [1..4]]; // Vincenzo Librandi, Sep 07 2018
-
Mathematica
RecurrenceTable[{a[1]==3, a[n]==2^(a[n-1] - 1) + 5}, a, {n, 4}] (* Vincenzo Librandi, Sep 07 2018 *)
Comments