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!)
A300891 Left-truncatable nonzero triangular numbers. 0
1, 3, 6, 21, 36, 66, 91, 136, 406, 666, 703, 903, 3003, 6903, 7021, 8001, 5000703 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Leading zeros in postfix strings are ignored (e.g., 003 and 03 are both equivalent to 3). Zero was excluded from the set because otherwise any integer starting with 1, 3, or 6 followed by any number of zeros would be a member.
Compare this sequence with the right-truncatable triangular numbers listed in A202269.
Conjecture: this sequence appears to be finite and full (brute-force tested up to 228*10^9 digits).
Both the source number and the result must be nonzero, otherwise 10 would be a term of the sequence. - Georg Fischer, Dec 02 2023
LINKS
EXAMPLE
6903 is a term because it is a nonzero triangular number, and 903 is a term of the sequence.
MAPLE
isA300891 := proc(n)
option remember ;
if n in {1, 3, 6} then
return true;
elif n < 10 then
return false;
end if;
if isA000217(n) then
dgs := max(1, ilog10(n)+1) ;
return procname( modp(n, 10^(dgs-1))) ;
else
return false;
end if;
end proc:
for i from 1 do
t := A000217(i) ;
if isA300891(t) then
print(t) ;
end if;
end do: # R. J. Mathar, May 02 2018
CROSSREFS
Sequence in context: A174461 A050611 A270510 * A056499 A056489 A015649
KEYWORD
nonn,base,more
AUTHOR
Stanislav Sykora, Mar 14 2018
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 15:42 EDT 2024. Contains 371960 sequences. (Running on oeis4.)