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!)
A247016 Triangular numbers A000217 composed of only curved digits {0, 2, 3, 5, 6, 8, 9}. 1
0, 3, 6, 28, 36, 55, 66, 253, 300, 325, 528, 595, 630, 666, 820, 903, 990, 2080, 2556, 2628, 2850, 2926, 3003, 3655, 3828, 5050, 5253, 5356, 5565, 5886, 5995, 6328, 6555, 6903, 8256, 8385, 20503, 22366, 23005, 23220, 23653, 25200, 26335, 26565, 28203, 28680, 28920 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Intersection of A000217 and A028374.
LINKS
EXAMPLE
a(10) = 528 is in the sequence because it is A000217(32) and composed of only curved digits 5, 2 and 8.
a(14) = 820 is in the sequence because it is A000217(40) and composed of only curved digits 8, 2 and 0.
MATHEMATICA
A247016 = {}; Do[t = n*(n + 1)/2; If[Intersection[IntegerDigits[t], {1, 4, 7}] == {}, AppendTo[A247016, t]], {n, 0, 500}]; A247016
Select[Accumulate[Range[0, 300]], DigitCount[#, 10, 1]==DigitCount[#, 10, 4] == DigitCount[ #, 10, 7] == 0&] (* Harvey P. Dale, Apr 18 2019 *)
PROG
(Python)
for n in range(2, 10**3):
..s = str(int(n*(n-1)/2))
..if not (s.count('1') + s.count('4') + s.count('7')):
....print(int(s), end=', ') # Derek Orr, Sep 18 2014
CROSSREFS
Sequence in context: A287881 A287883 A246753 * A083675 A085076 A076711
KEYWORD
nonn,base,less
AUTHOR
K. D. Bajpai, Sep 09 2014
EXTENSIONS
Added starting number 0 (suggested by D. Orr), added A-number in the name and examples. - Wolfdieter Lang, Oct 06 2014
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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)