login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A098731 Numbers k such that 2*R_k is a happy number (A007770), where R_k = 11...1 is the repunit (A002275) of length k. 1
7, 8, 11, 17, 25, 44, 47, 48, 52, 59, 70, 80, 89, 92, 94, 98, 101, 110, 116, 124, 134, 139, 152, 158, 161, 164, 170, 175, 179, 184, 187, 196, 205, 209, 215, 222, 226, 228, 233, 235, 241, 250, 269, 272, 273, 278, 282, 287, 288, 296, 297, 303, 322, 325, 333, 361 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
2*R_11 = 2*11111111111 = 22222222222 is a happy number, so 11 is in the list.
PROG
(Python)
from itertools import count, islice
def A098731_gen(startvalue=1): # generator of terms
for n in count(max(startvalue, 1)):
m = n<<2
while m not in {1, 37, 58, 89, 145, 42, 20, 4, 16}:
m = sum((0, 1, 4, 9, 16, 25, 36, 49, 64, 81)[ord(d)-48] for d in str(m))
if m == 1:
yield n
A098731_list = list(islice(A098731_gen(), 20)) # Chai Wah Wu, Aug 02 2023
CROSSREFS
Sequence in context: A102963 A117619 A226977 * A348784 A294483 A105740
KEYWORD
easy,nonn,base
AUTHOR
Lambert Klasen (lambert.klasen(AT)gmx.de), Oct 28 2004
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 09:23 EDT 2024. Contains 371782 sequences. (Running on oeis4.)