The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A339023 Replace each digit d in the decimal representation of n with the digital root of n*d. 4
0, 1, 4, 9, 7, 7, 9, 4, 1, 9, 10, 22, 36, 43, 52, 63, 76, 82, 99, 19, 40, 63, 88, 16, 36, 58, 73, 99, 28, 49, 90, 34, 61, 99, 31, 64, 99, 37, 67, 99, 70, 25, 63, 13, 55, 99, 46, 85, 36, 79, 70, 36, 85, 46, 99, 55, 13, 63, 25, 79, 90, 67, 37, 99, 64, 31, 99, 61 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(9*n + 1) = 9*n + 1.
a(10*n) = 10*a(n). - Sebastian Karlsson, Feb 14 2021
EXAMPLE
a(23) = 16 because 2*23 = 46 and 3*23 = 69 and the digital roots of 46 and 69 are 1 and 6.
PROG
(Python)
def digitalroot(n):
return 0 if n == 0 else (n-1)%9 + 1
def a(n):
return int(''.join([str(digitalroot(n*int(d))) for d in str(n)]))
for n in range(0, 68):
print(a(n), end=', ')
(PARI) dr(n) = if(n, (n-1)%9+1); \\ A010888
a(n) = if (n==0, return(0)); my(d=digits(n), s=""); for (k=1, #d, s=concat(s, dr(n*d[k]))); eval(s); \\ Michel Marcus, Jan 18 2021
CROSSREFS
Sequence in context: A335089 A306004 A056992 * A169908 A004159 A092554
KEYWORD
nonn,base,look
AUTHOR
Sebastian Karlsson, Jan 18 2021
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 May 17 12:26 EDT 2024. Contains 372600 sequences. (Running on oeis4.)