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-1 of 1 results.

A275451 Number of occurrences of the string n in primorial(n).

Original entry on oeis.org

0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 2, 2, 1, 1, 0, 2, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 3, 0, 0, 3, 2, 2, 1, 1, 1, 1, 2, 0, 5, 4, 4, 2, 4, 4, 0, 0, 4, 2, 4, 3, 1, 0, 1, 0, 1, 2
Offset: 1

Views

Author

Ivan N. Ianakiev, Jul 28 2016

Keywords

Examples

			Primorial(3) equals 30, which contains 3 once, therefore a(3) = 1.
		

Crossrefs

Cf. A002110 (primorial numbers), A275450.

Programs

  • Mathematica
    primorial[n_]:=Product[Prime[i],{i,1,n}];
    Table[Length[StringPosition[ToString[primorial[n]],ToString[n]]],{n,1,100}]
    SequenceCount[IntegerDigits[#[[1]]],IntegerDigits[#[[2]]]]&/@With[ {nn=90}, Thread[ {FoldList[ Times,Prime[Range[nn]]],Range[nn]}]] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Sep 16 2017 *)

Formula

a(A275450(n)) > 0.
Showing 1-1 of 1 results.