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!)
A253635 Rectangular array read by upwards antidiagonals: a(n,k) = index of largest term <= 10^k in row n of A253572, n >= 1, k >= 0. 10
1, 1, 4, 1, 7, 7, 1, 9, 20, 10, 1, 10, 34, 40, 14, 1, 10, 46, 86, 67, 17, 1, 10, 55, 141, 175, 101, 20, 1, 10, 62, 192, 338, 313, 142, 24, 1, 10, 67, 242, 522, 694, 507, 190, 27, 1, 10, 72, 287, 733, 1197, 1273, 768, 244, 30 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Or a(n,k) = the number of positive integers less than or equal to 10^k that are divisible by no prime exceeding prime(n).
LINKS
EXAMPLE
Array begins:
{1, 4, 7, 10, 14, 17, 20, 24, 27, 30, ...}
{1, 7, 20, 40, 67, 101, 142, 190, 244, 306, ...}
{1, 9, 34, 86, 175, 313, 507, 768, 1105, 1530, ...}
{1, 10, 46, 141, 338, 694, 1273, 2155, 3427, 5194, ...}
{1, 10, 55, 192, 522, 1197, 2432, 4520, 7838, 12867, ...}
{1, 10, 62, 242, 733, 1848, 4106, 8289, 15519, 27365, ...}
{1, 10, 67, 287, 945, 2579, 6179, 13389, 26809, 50351, ...}
{1, 10, 72, 331, 1169, 3419, 8751, 20198, 42950, 85411, ...}
{1, 10, 76, 369, 1385, 4298, 11654, 28434, 63768, 133440, ...}
{1, 10, 79, 402, 1581, 5158, 14697, 37627, 88415, 193571, ...}
MATHEMATICA
r = 10; y[1] = t = Table[2^j, {j, 0, 39}]; max = 10^13; len = 10^10; prev = 0; For[n = 2, n <= r, n++, next = 0; For[k = 1, k <= 43, k++, If[Prime[n]^k < max, t = Union[t, Prime[n]*t]; s = FirstPosition[t, v_ /; v > len, 0]; t = Take[t, s[[1]] - 1]; If[t[[-1]] > len, t = Delete[t, -1]]; next = Length[t]; If[next == prev, Break, prev = next], Break]]; y[n] = t]; b[i_, j_] := FirstPosition[y[i], v_ /; v > 10^j][[1]]; a253635[n_, j_] := If[IntegerQ[b[n, j]], b[n, j] - 1, 0]; Flatten[Table[a253635[n - j, j], {n, r}, {j, 0, n - 1}]] (* array antidiagonals flattened *)
CROSSREFS
Sequence in context: A082455 A140657 A348564 * A078975 A349672 A050411
KEYWORD
nonn,tabl
AUTHOR
L. Edson Jeffery, Jan 07 2015
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 August 23 22:54 EDT 2024. Contains 375396 sequences. (Running on oeis4.)