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!)
A272934 Depth of Pascal's triangle such that the number of elements in the triangle is a factor of the sum of the elements. 2
1, 2, 6, 18, 42, 126, 162, 378, 486, 882, 1458, 2646, 3078, 3942, 5418, 9198, 11826, 14406, 16758, 18522, 24966, 26406, 37338, 39366, 42462, 71442, 77658, 95922, 99078, 113778, 117306, 143262, 174762, 175446, 184842, 265482, 304038, 308826, 318402, 351918 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
a(n) are the values m such that the expression (2^(m+1) - 2)/(m^2 + m) is an integer.
a(n) are the values m such that A000225(m)/A000217(m) is an integer.
It appears that a(n) == 2 (mod 4) for n > 1. - Robert Israel, Jul 04 2017
LINKS
Robert Israel, Table of n, a(n) for n = 1..300 (first 66 terms from Melvin Peralta)
EXAMPLE
a(2) = 6 because if Pascal's triangle is written out to 6 rows, there will be 21 elements whose sum is 63, and 21 is a factor of 63.
6 is a term because A000225(6)/A000217(6) = 63/21 = 3, an integer.
MAPLE
select(t -> 2 &^ t - 1 mod t*(t+1)/2 = 0, [$1..10^6]); # Robert Israel, Jul 04 2017
MATHEMATICA
Join[{1}, Select[Range[10^6], PowerMod[2, #+1, #^2+#] == 2 &]]
CROSSREFS
Sequence in context: A027556 A195584 A225316 * A192708 A233531 A320303
KEYWORD
nonn
AUTHOR
Melvin Peralta, May 11 2016
EXTENSIONS
Mild editing. Wolfdieter Lang, May 31 2016
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 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)