A290788 Values of n such that 6^n ends in n, or expomorphic numbers in "base" 6.
6, 56, 656, 8656, 38656, 238656, 7238656, 47238656, 447238656, 7447238656, 27447238656, 227447238656, 3227447238656
Offset: 1
Examples
6^6 = 46656 ends in 6, so 6 is a term. 6^56 = ...656 ends in 56, so 56 is another term.
Links
- Charles W. Trigg, Problem 559, Crux Mathematicorum, page 192, Vol. 7, Jun. 81.
Crossrefs
Programs
-
Mathematica
Select[Range[10^6], PowerMod[6, #, 10^(1 + Floor@ Log10[#])] == # &] (* Michael De Vlieger, Apr 13 2021 *)
-
PARI
is(n)=my(m=10^#digits(n)); Mod(6,m)^n==n \\ Charles R Greathouse IV, Aug 10 2017
Extensions
a(6)-a(9) from Charles R Greathouse IV, Aug 10 2017
a(10)-a(13) from Chai Wah Wu, Apr 13 2021
Comments