OFFSET
1,1
COMMENTS
Values found by Harvey Heinz and Jud McCranie.
REFERENCES
R. K. Guy, Unsolved Problems Number Theory, Sect. E34.
LINKS
Bo Gyu Jeong, Table of n, a(n) for n = 1..50
C. Rivera, Related puzzle page
Eric Weisstein's World of Mathematics, Happy Number
PROG
(Python)
from sympy import nextprime
def A046519(n):
m = 10**(n-1)
while (m:=nextprime(m)):
k = m
while k not in {1, 37, 58, 89, 145, 42, 20, 4, 16}:
k = sum((0, 1, 4, 9, 16, 25, 36, 49, 64, 81)[ord(d)-48] for d in str(k))
if k == 1:
return m # Chai Wah Wu, Aug 02 2023
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Patrick De Geest, Sep 15 1998
STATUS
approved