A288845 Values of n such that 4^n ends in n, or expomorphic numbers in base 4.
6, 96, 896, 8896, 28896, 728896, 1728896, 11728896, 411728896, 90411728896, 290411728896, 5290411728896, 55290411728896, 555290411728896, 2555290411728896, 302555290411728896, 2302555290411728896, 22302555290411728896, 622302555290411728896, 3622302555290411728896
Offset: 1
Examples
4^6 = 4096 ends in 6, so 6 is a term; 4^96 = ....896 ends in 96, so 96 is another term.
Links
- Charles W. Trigg, Problem 559, Crux Mathematicorum, page 192, Vol. 7, Jun. 81.
Crossrefs
Programs
-
PARI
isok(n) = 10^valuation(4^n-n, 10)>n; \\ after A003226; Michel Marcus, Jun 18 2017
-
PARI
is(n)=my(m=10^#digits(n)); Mod(4, m)^n==n \\ Charles R Greathouse IV, Aug 10 2017
Extensions
a(6)-a(9) from Gheorghe Coserea, Jun 21 2017
a(10)-a(11) from Robert G. Wilson v, Jun 24 2017
Comments