A067869 Numbers n such that n and 2^n end with the same 5 digits.
48736, 148736, 248736, 348736, 448736, 548736, 648736, 748736, 848736, 948736, 1048736, 1148736, 1248736, 1348736, 1448736, 1548736, 1648736, 1748736, 1848736, 1948736, 2048736, 2148736, 2248736, 2348736, 2448736, 2548736
Offset: 1
Links
- Tanya Khovanova, Recursive Sequences
- Index entries for linear recurrences with constant coefficients, signature (2,-1).
Programs
-
PARI
isok(n) = (2^n - n) % 100000 == 0; \\ Michel Marcus, Nov 23 2013
Formula
a(n) = 48736+10^5(n-1).
a(n) = 2*a(n-1)-a(n-2). G.f.: x*(48736+51264*x)/(1-x)^2. - Colin Barker, Jun 05 2012
Comments