cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-2 of 2 results.

A280635 Numbers whose digit string can be partitioned into three nonempty parts such that the product of the first two parts equals the third part.

Original entry on oeis.org

111, 122, 133, 144, 155, 166, 177, 188, 199, 212, 224, 236, 248, 313, 326, 339, 414, 428, 515, 616, 717, 818, 919, 2510, 2612, 2714, 2816, 2918, 3412, 3515, 3618, 3721, 3824, 3927, 4312, 4416, 4520, 4624, 4728, 4832, 4936, 5210, 5315, 5420, 5525, 5630, 5735
Offset: 1

Views

Author

Randy L. Ekl, Jan 06 2017

Keywords

Comments

Could be called "area numbers" since if the first set of digits is the length, and the second set of digits is the width, then the last set of digits is the area, with length * width = area.

Examples

			236 is in the sequence since 2*3=6. 3515 is in the sequence since 3*5=15. Leading zeros are not allowed, thus 2036 (2*03=6) is not included.
		

Crossrefs

Programs

  • Maple
    read("transforms") : # implements digcatL
    isA280635 := proc(n)
        local dgs,spl1,spl2,dgs1,dgs2,dgs3;
        dgs := convert(n,base,10) ;
        if nops(dgs) >= 3 then
            for spl1 from 1 to nops(dgs)-2 do
            for spl2 from spl1+1 to nops(dgs)-1 do
                if op(-1,dgs) <> 0 and op(spl1,dgs) <> 0 and op(spl2,dgs) <> 0 then
                    dgs1 := ListTools[Reverse]([op(spl2+1..nops(dgs),dgs)]) ;
                    dgs2 := ListTools[Reverse]([op(spl1+1..spl2,dgs)]) ;
                    dgs3 := ListTools[Reverse]([op(1..spl1,dgs)]) ;
                    if digcatL(dgs1)*digcatL(dgs2) = digcatL(dgs3) then
                        return true;
                    end if
                end if;
            end do:
            end do:
            false ;
        else
            false;
        end if;
    end proc:
    for n from 100 do
        if isA280635(n) then
            printf("%d,\n",n) ;
        end if;
    end do: # R. J. Mathar, Jan 10 2017
  • Mathematica
    With[{nn = 1}, Union@ Flatten@ Table[FromDigits@ Flatten@ Map[IntegerDigits, {n, k, n k}], {n, 10^nn - 1}, {k, 10^nn - 1}]] (* Michael De Vlieger, Jan 07 2017 *)

A088294 Primes in which the digit string can be partitioned into three parts such that third (least significant) part is the product of the first two.

Original entry on oeis.org

199, 313, 919, 7321, 7963, 11717, 11777, 12323, 13339, 14747, 15959, 16363, 17117, 17351, 18181, 18787, 21121, 23369, 27127, 29129, 29387, 31393, 31751, 31957, 32369, 32987, 39139, 41141, 47147, 51151, 59159, 71171, 81181, 87187, 89189
Offset: 1

Views

Author

Amarnath Murthy, Sep 30 2003

Keywords

Comments

Primes in A280635. - Randy L. Ekl, Jan 09 2017

Examples

			17351 is a member as it can be partitioned as (17, 3, 51) and 17*3 = 51.
		

Crossrefs

Extensions

More terms from David Wasserman, Aug 04 2005
Offset changed to 1 by Michel Marcus, Jan 08 2017
Showing 1-2 of 2 results.