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”).

A113942
Concatenating n with n+1 (in base 10) gives a number which is the product of 2 palindromes.
0
1, 4, 5, 115, 148, 247, 346, 371, 445, 528, 7606, 8376, 9157, 12478, 16528, 19834, 22477, 25103, 28546, 31989, 32476, 33057, 38875, 40495, 42475, 45761, 46335, 50494, 52474, 52647, 59533, 61483, 62473, 66445, 72472, 83461, 94450, 1165288
OFFSET
1,2
COMMENTS
Members that have an even number of digits are rare: 7606, 8376, 9157, ..., . - Robert G. Wilson v
EXAMPLE
3305733058 = 45454*72727.
MATHEMATICA
palQ[n_] := Block[{id = IntegerDigits[n]}, id == Reverse[id]]; t = {}; Do[p = 10^Floor[Log[10, n] + 1]n + n + 1; If[ MemberQ[ Union[Times @@@ Tuples[ Select[ Most@ Rest@ Divisors@p, palQ[ # ] &], 2]], p], AppendTo[t, n]], {n, 1504947}]; t (* Robert G. Wilson v, Jan 31 2006 *)
CROSSREFS
Sequence in context: A331584 A052320 A079197 * A073129 A270551 A041409
KEYWORD
base,nonn
AUTHOR
Giovanni Resta, Jan 31 2006
STATUS
approved