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.

A014575 Vampire numbers (definition 2): numbers n with an even number of digits which have a factorization n = i*j where i and j have the same number of digits and the multiset of the digits of n coincides with the multiset of the digits of i and j.

Original entry on oeis.org

1260, 1395, 1435, 1530, 1827, 2187, 6880, 102510, 104260, 105210, 105264, 105750, 108135, 110758, 115672, 116725, 117067, 118440, 120600, 123354, 124483, 125248, 125433, 125460, 125500, 126027, 126846, 129640
Offset: 1

Views

Author

Keywords

Comments

The numbers i and j may not both have trailing zeros. Numbers may have more than one such factorization. However, each n is listed only once. [Comment modified by Rick L. Shepherd, Nov 02 2009]

Examples

			1260 = 21*60, 1395 = 15*93, 1435 = 35*41, 1530 = 30*51, etc.
		

References

  • C. A. Pickover, "Vampire Numbers." Ch. 30 in Keys to Infinity. New York: Wiley, pp. 227-231, 1995.

Crossrefs

The following sequences are all closely related: A020342, A014575, A080718, A280928, A048936, A144563.

Programs

  • Maple
    n := 1 :
    for dgs from 4 to 10 by 2 do
        for a from 10^(dgs-1) to 10^dgs-1 do
            amset := sort(convert(a,base,10)) ;
            isv := false ;
            for d in numtheory[divisors](a) do
                m := a/d ;
                if ( m >= d ) then
                    dset := convert(d,base,10) ;
                    mset := convert(m,base,10) ;
                    fset := sort([op(dset),op(mset)]) ;
                    if fset = amset and nops(dset) = nops(mset) then
                        if (m mod 10 <> 0 ) or (d mod 10 <> 0 ) then
                        printf("%d %d\n",n,a) ;
                        isv := true ;
                        n := n+1 ;
                        end if;
                    end if;
                end if;
                if isv then
                    break;
                end if;
            end do:
        end do:
    end do: # R. J. Mathar, Jan 10 2013
  • Mathematica
    fQ[n_] := If[OddQ@ IntegerLength@ n, False, MemberQ[Map[Sort@ Flatten@ IntegerDigits@ # &, Select[Map[{#, n/#} &, TakeWhile[Divisors@ n, # <= Sqrt@ n &]], SameQ @@ Map[IntegerLength, #] &]], Sort@ IntegerDigits@ n]]; Select[Range[10^6], fQ] (* Michael De Vlieger, Jan 27 2017 *)
  • PARI
    is(n)=my(v=digits(n));if(#v%2,return(0));fordiv(n,d,if(#Str(d)==#v/2 && #Str(n/d)==#v/2 && vecsort(v)==vecsort(digits(eval(Str(d,n/d)))) && (d%10 || (n/d)%10), return(1)));0 \\ Charles R Greathouse IV, Apr 19 2013
    
  • PARI
    is_A014575(n)={my(v=vecsort(Vecsmall(Str(n)))); #v%2 && return; my( M=10^(#v\2), L=M\10); fordiv(n,d, dA048933) if vampire number, or false (empty, 0) else. - M. F. Hasler, Mar 11 2021

Extensions

Edited by N. J. A. Sloane, Jan 03 2009