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!)
A117310 Triangular numbers for which the product of the digits is a hexagonal number. 2
0, 1, 6, 10, 105, 120, 153, 190, 210, 231, 300, 351, 406, 465, 630, 703, 741, 780, 820, 903, 990, 1035, 1081, 1540, 1770, 1830, 2016, 2080, 2701, 2850, 3003, 3081, 3160, 3240, 3403, 3570, 4005, 4095, 4560, 4950, 5050, 5460, 6105, 6670, 6786, 6903, 7021, 7140 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Presumably a(n) ~ 0.5 n^2 since I assume the product of the digits of almost all triangular numbers is 0. - Charles R Greathouse IV, Dec 20 2012
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 0..10000
EXAMPLE
153 is in the sequence because (1) it is a triangular number and (2) the product of its digits 1*5*3=15 is a hexagonal number.
MATHEMATICA
nn=200; With[{hex=Table[n(2n-1), {n, 0, nn}]}, Select[Accumulate[ Range[ 0, nn]], MemberQ[hex, Times@@IntegerDigits[#]]&]](* Harvey P. Dale, Dec 20 2012 *)
PROG
(PARI) is(n)=if(ispolygonal(n, 3), my(v=digits(n)); ispolygonal(prod(i=1, #v, v[i]), 6), 0) \\ Charles R Greathouse IV, Dec 20 2012
CROSSREFS
Sequence in context: A269341 A348650 A201921 * A174322 A359332 A352132
KEYWORD
base,nonn,easy
AUTHOR
Luc Stevens (lms022(AT)yahoo.com), Apr 26 2006
EXTENSIONS
Corrected (a(11)=300 inserted) by Harvey P. Dale, Dec 20 2012
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 April 25 09:21 EDT 2024. Contains 371967 sequences. (Running on oeis4.)