OFFSET
1,1
COMMENTS
Smarandache's conjecture: there are infinitely many terms.
This is a subsequence of A061076.
REFERENCES
A. Murthy, Smarandache friendly numbers and a few more sequences, Smarandache Notions Journal, Vol. 12, No. 1-2-3, Spring 2001. Page 267
LINKS
Chai Wah Wu, Table of n, a(n) for n = 1..205
EXAMPLE
MATHEMATICA
Intersection[Accumulate[Times @@@ IntegerDigits[Range[2, 10000000, 2]]],
Accumulate[Times @@@ IntegerDigits[Range[1, 10000000, 2]]]]
PROG
(Python)
from math import prod
from itertools import islice
def A352346_gen(): # generator of terms
n1, m1, n2, m2 = 1, 1, 2, 2
while True:
if m1 == m2:
yield m1
k = 0
while k == 0:
n1 += 2
m1 += (k := prod(int(d) for d in str(n1)))
while m2 < m1:
n2 += 2
m2 += prod(int(d) for d in str(n2))
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Luca Onnis, Mar 12 2022
STATUS
approved