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!)
A119156 Triangular numbers composed of digits {2,3,8}. 2
3, 28, 3828, 828828, 388333828828, 223832333328828, 332828222833288828828, 28388332838238232223328828 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(9) > 10^45. - Tyler Busby, Mar 29 2023
LINKS
FORMULA
a(n) = A000217(A119157(n)). - Tyler Busby, Mar 29 2023
PROG
(Python)
klimit = 10**6
A000217 = (k*(k+1)//2 for k in range(klimit)) # generator
print([m for m in A000217 if set(str(m)) <= set("238")]) # Michael S. Branicky, Mar 28 2021
CROSSREFS
Cf. A000217, A119157. See A119033 for a table of cross-references.
Sequence in context: A196735 A208438 A122891 * A175979 A096621 A362466
KEYWORD
nonn,base,more
AUTHOR
Giovanni Resta, May 10 2006
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 July 8 06:24 EDT 2024. Contains 374148 sequences. (Running on oeis4.)