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

A117711
Pentagonal numbers for which both the sum of the digits and the product of the digits are pentagonal numbers.
1
0, 1, 5, 6501, 8400, 10542, 10795, 18760, 21540, 32340, 45850, 50142, 50692, 55200, 60501, 72490, 91390, 104412, 127750, 160230, 170185, 179401, 208507, 239800, 250717, 272001, 273280, 333940, 346801, 400675, 429070, 442002, 520087, 536107, 552370, 602617, 637330
OFFSET
1,3
LINKS
EXAMPLE
6501 is a pentagonal number whose sum of digits 6+5+0+1 = 12 and product of digits 6*5*0*1 = 0 are both pentagonal.
MATHEMATICA
sod[n_] := Plus @@ IntegerDigits[n]; pod[n_] := Times @@ IntegerDigits[n]; pentQ[n_] := n == 0 || IntegerQ[(Sqrt[24*n + 1] + 1)/6]; Select[Table[n*(3*n - 1)/2, {n, 0, 1000}], pentQ[sod[#]] && pentQ[pod[#]] &] (* Amiram Eldar, Feb 06 2021 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Luc Stevens (lms022(AT)yahoo.com), Apr 13 2006
EXTENSIONS
Offset and data corrected by Amiram Eldar, Feb 06 2021
STATUS
approved