login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A352239
Numbers k such that the decimal expansion of k and 14^k both begin with 14.
1
1404, 1445, 1486, 1493, 14023, 14071, 14112, 14153, 14160, 14201, 14242, 14283, 14290, 14331, 14372, 14379, 14420, 14461, 14502, 14509, 14550, 14591, 14639, 14680, 14721, 14728, 14769, 14810, 14851, 14858, 14899, 14940, 14947, 14988, 140029, 140070, 140118, 140159
OFFSET
1,1
COMMENTS
Subsequence of A352179.
EXAMPLE
Both 1404 and 14^1404 = 1458... start with the digits 14.
PROG
(Python)
from itertools import count, islice
def A352239_gen(): # generator of terms
for l in count(0):
k14 = 14**(14*10**l)
for k in range(14*10**l, 15*10**l):
if str(k14)[:2] == '14':
yield k
k14 *= 14
A352239_list = list(islice(A352239_gen(), 20))
CROSSREFS
Cf. A352179.
Sequence in context: A178271 A271579 A271712 * A206680 A022058 A107522
KEYWORD
nonn,base
AUTHOR
Chai Wah Wu, Mar 08 2022
STATUS
approved